1
0
mirror of https://github.com/seejohnrun/haste-client.git synced 2026-01-03 17:09:14 +00:00

10 Commits

Author SHA1 Message Date
Filipe Chagas
83052b3504 Upgrade version 2023-02-02 11:44:01 -03:00
Yusuf Yilmaz
e213bf2a22 Merge pull request #59 from toptal/no-jira-update-hastebin-urls
Update hastebin urls
2023-01-31 12:26:38 +03:00
Yusuf Yilmaz
34dd41eb04 Fix gem specs 2023-01-31 11:48:30 +03:00
Yusuf Yilmaz
57bd045ae9 update ga test workflow 2023-01-31 11:15:10 +03:00
Yusuf Yilmaz
ca19c71738 update ga test workflow 2023-01-31 11:14:10 +03:00
Yusuf Yilmaz
f918c81b38 update ga test workflow 2023-01-31 11:12:33 +03:00
Yusuf Yilmaz
7028107b9f Fix licence link 2023-01-31 10:21:32 +03:00
Yusuf Yilmaz
65adc1ae4e Update hastebin urls 2023-01-31 10:16:00 +03:00
Yusuf Yilmaz
a877692ab3 [UTI-2583] Adapt haste-client to the new API usage rules (#57) 2023-01-30 22:04:28 -03:00
Marcelo Miranda Carneiro
e8912c3456 [UTI-2608] Team name change to Marketing Tools 2 (#58) 2023-01-23 09:17:31 -03:00
7 changed files with 22 additions and 22 deletions

3
.bundle/config Normal file
View File

@@ -0,0 +1,3 @@
---
BUNDLE_RETRY: "3"
BUNDLE_JOBS: "4"

2
.github/CODEOWNERS vendored
View File

@@ -1 +1 @@
* @toptal/ext-utilities-eng
* @toptal/marketing-tools-2-eng

View File

@@ -4,8 +4,6 @@ on:
push:
branches: [master]
pull_request:
branches:
- UTI-2583--adapt-haste-client-to-new-api
jobs:
unit_tests:
@@ -14,15 +12,16 @@ jobs:
timeout-minutes: 5
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: 3.0.0
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true
- name: Run bundle install
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run bundle install
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Build and test with rspec
run: bundle exec rspec spec
- name: Build and test with rspec
run: bundle exec rspec spec

View File

@@ -131,4 +131,4 @@ uploader.upload_path '/tmp/whaaaa' # key
## Contributor License Agreement
Licensed under the [MIT](https://github.com/toptal/haste-client/blob/main/LICENSE.txt 'https://github.com/toptal/haste-client/blob/main/LICENSE.txt') license.
Licensed under the [MIT](https://github.com/toptal/haste-client/blob/master/LICENSE.txt 'https://github.com/toptal/haste-client/blob/main/LICENSE.txt') license.

View File

@@ -3,14 +3,14 @@ require File.dirname(__FILE__) + '/lib/haste/version'
Gem::Specification.new do |s|
s.name = 'haste'
s.author = 'John Crepezzi'
s.author = 'Toptal'
s.add_development_dependency('rspec')
s.add_dependency('json')
s.add_dependency('faraday', '~> 0.9')
s.description = 'CLI Haste Client'
s.license = 'MIT License'
s.homepage = 'https://github.com/seejohnrun/haste-client'
s.email = 'john.crepezzi@gmail.com'
s.homepage = 'https://github.com/toptal/haste-client'
s.email = 'open-source@toptal.com'
s.executables = 'haste'
s.files = Dir['lib/**/*.rb', 'haste']
s.platform = Gem::Platform::RUBY

View File

@@ -4,8 +4,8 @@ require 'uri'
module Haste
DEFAULT_SERVER_URL = 'https://new.hastebin.com'
DEFAULT_SHARE_SERVER_URL = 'https://new.hastebin.com'
DEFAULT_SERVER_URL = 'https://hastebin.com'
DEFAULT_SHARE_SERVER_URL = 'https://hastebin.com'
class Uploader

View File

@@ -1,5 +1,3 @@
module Haste
VERSION = '0.2.3'
VERSION = '0.3.0'
end