diff options
author | elijah <elijah@riseup.net> | 2013-02-07 01:16:28 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-02-07 01:16:28 -0800 |
commit | 2aa2007624288e6f13a49602da6590ffeebab7ad (patch) | |
tree | e313e264717a82bd127bf4676da5c4c917a86485 /leap_cli.gemspec | |
parent | f83252cc71e4dd354c6f71500b2016575b1a4c4b (diff) | |
download | leap_cli-2aa2007624288e6f13a49602da6590ffeebab7ad.tar.gz leap_cli-2aa2007624288e6f13a49602da6590ffeebab7ad.tar.bz2 |
remove runtime dependency for certificate_authority gem, since this gem is vendored (with our custom patches). bump version to 0.1.5
Diffstat (limited to 'leap_cli.gemspec')
-rw-r--r-- | leap_cli.gemspec | 4 |
1 files changed, 3 insertions, 1 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 |