diff options
-rw-r--r-- | leap_cli.gemspec | 4 | ||||
-rw-r--r-- | lib/leap_cli/version.rb | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/leap_cli.gemspec b/leap_cli.gemspec index 1b899bc..f7bcbc0 100644 --- a/leap_cli.gemspec +++ b/leap_cli.gemspec @@ -55,9 +55,11 @@ spec = Gem::Specification.new do |s| # network gems s.add_runtime_dependency('capistrano', '>= 2.13.5') #s.add_runtime_dependency('supply_drop') + # ^^ currently vendored # crypto gems - s.add_runtime_dependency('certificate_authority') # this gem pulls in ActiveModel, but it just uses it for validation logic. + #s.add_runtime_dependency('certificate_authority', '>= 0.2.0') # fyi, this gem pulls in ActiveModel, but it just uses it for validation logic. + # ^^ currently vendored s.add_runtime_dependency('net-ssh') s.add_runtime_dependency('gpgme') # not essential, but used for some minor stuff in adding sysadmins diff --git a/lib/leap_cli/version.rb b/lib/leap_cli/version.rb index 7851676..ced0836 100644 --- a/lib/leap_cli/version.rb +++ b/lib/leap_cli/version.rb @@ -1,6 +1,6 @@ module LeapCli unless defined?(LeapCli::VERSION) - VERSION = '0.1.4' + VERSION = '0.1.5' SUMMARY = 'Command line interface to the LEAP platform' DESCRIPTION = 'The command "leap" can be used to manage a bevy of servers running the LEAP platform from the comfort of your own home.' REQUIRE_PATHS = ['lib', 'vendor/supply_drop/lib', 'vendor/certificate_authority/lib'] |