Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
PATH
remote: .
specs:
aptible-cli (0.24.5)
aptible-cli (0.24.6)
activesupport (>= 4.0, < 6.0)
aptible-api (~> 1.8)
aptible-api (~> 1.8.0)
aptible-auth (~> 1.2.5)
aptible-billing (~> 1.0)
aptible-resource (~> 1.1)
aws-eventstream (~> 1.1.1)
aws-sdk (~> 2.0)
aws-sigv4 (~> 1.2.4)
bigdecimal (~> 1.3.5)
cbor
chronic_duration (~> 0.10.6)
concurrent-ruby (< 1.1.10)
git (< 1.10)
connection_pool (< 2.2.4)
faraday (~> 0.17.6)
git (~> 1.7.0)
httpclient (~> 2.8.0)
json (~> 2.5.0)
jwt (~> 2.3.0)
rack (~> 1.0)
stripe (< 5.0)
term-ansicolor (~> 1.8.0)
thor (~> 0.20.0)

Expand All @@ -28,7 +35,7 @@ GEM
tzinfo (~> 1.1)
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
aptible-api (1.8)
aptible-api (1.8.1)
aptible-auth
aptible-resource
gem_config
Expand All @@ -42,7 +49,7 @@ GEM
activesupport (>= 4.0, < 6.0)
aptible-resource (~> 1.0)
stripe (>= 1.13.0)
aptible-resource (1.1.2)
aptible-resource (1.1.3)
activesupport
fridge
gem_config (~> 0.3.1)
Expand Down Expand Up @@ -79,9 +86,9 @@ GEM
fabrication (2.15.2)
faraday (0.17.6)
multipart-post (>= 1.2, < 3)
fridge (0.2.2)
fridge (1.0.0)
gem_config
jwt
jwt (~> 2.3.0)
gem_config (0.3.2)
git (1.7.0)
rchardet (~> 1.8)
Expand Down Expand Up @@ -147,7 +154,7 @@ GEM
tins (~> 1.0)
thor (0.20.3)
thread_safe (0.3.6)
tins (1.33.0)
tins (1.38.0)
bigdecimal
sync
tzinfo (1.2.11)
Expand Down
11 changes: 9 additions & 2 deletions aptible-cli.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,25 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.add_dependency 'activesupport', '>= 4.0', '< 6.0'
spec.add_dependency 'aptible-api', '~> 1.8'
spec.add_dependency 'aptible-api', '~> 1.8.0'
spec.add_dependency 'aptible-auth', '~> 1.2.5'
spec.add_dependency 'aptible-billing', '~> 1.0'
spec.add_dependency 'aptible-resource', '~> 1.1'
spec.add_dependency 'aws-eventstream', '~> 1.1.1'
spec.add_dependency 'aws-sdk', '~> 2.0'
spec.add_dependency 'aws-sigv4', '~> 1.2.4'
spec.add_dependency 'bigdecimal', '~> 1.3.5' # https://github.com/ruby/bigdecimal#which-version-should-you-select
spec.add_dependency 'cbor'
spec.add_dependency 'chronic_duration', '~> 0.10.6'
spec.add_dependency 'concurrent-ruby', '< 1.1.10'
spec.add_dependency 'connection_pool', '< 2.2.4'
spec.add_dependency 'faraday', '~> 0.17.6'
spec.add_dependency 'git', '~> 1.7.0'
spec.add_dependency 'httpclient', '~> 2.8.0'
spec.add_dependency 'json', '~> 2.5.0'
spec.add_dependency 'jwt', '~> 2.3.0'
spec.add_dependency 'git', '< 1.10'
spec.add_dependency 'rack', '~> 1.0'
spec.add_dependency 'stripe', '< 5.0'
spec.add_dependency 'term-ansicolor', '~> 1.8.0'
spec.add_dependency 'thor', '~> 0.20.0'

Expand Down
2 changes: 1 addition & 1 deletion lib/aptible/cli/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Aptible
module CLI
VERSION = '0.24.5'.freeze
VERSION = '0.24.6'.freeze
end
end