aboutsummaryrefslogtreecommitdiff
path: root/leap_cli.gemspec
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2012-11-01 01:07:27 -0700
committerelijah <elijah@riseup.net>2012-11-01 01:07:27 -0700
commit57287ae1d4151ec453ec9d33fafe4f1a4ced37e0 (patch)
treefe63a8de11c41d247fc3634277bc49c1ca7cd689 /leap_cli.gemspec
parentf339e7b94ab8920fd1e271c50145b5d2d1a8ac9d (diff)
downloadleap_cli-57287ae1d4151ec453ec9d33fafe4f1a4ced37e0.tar.gz
leap_cli-57287ae1d4151ec453ec9d33fafe4f1a4ced37e0.tar.bz2
x.509 support -- added certificate authority creation and server cert creation
Diffstat (limited to 'leap_cli.gemspec')
-rw-r--r--leap_cli.gemspec8
1 files changed, 6 insertions, 2 deletions
diff --git a/leap_cli.gemspec b/leap_cli.gemspec
index ecabe45..20e50a8 100644
--- a/leap_cli.gemspec
+++ b/leap_cli.gemspec
@@ -16,6 +16,7 @@ spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.summary = LeapCli::SUMMARY
s.description = LeapCli::DESCRIPTION
+ s.license = "GPLv3"
##
## GEM FILES
@@ -48,13 +49,16 @@ spec = Gem::Specification.new do |s|
s.add_runtime_dependency('highline')
# network gems
- s.add_runtime_dependency('net-ssh')
s.add_runtime_dependency('capistrano')
#s.add_runtime_dependency('supply_drop')
+ # 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('net-ssh')
+ s.add_runtime_dependency('gpgme') # not essential, but used for some minor stuff in adding sysadmins
+
# misc gems
s.add_runtime_dependency('ya2yaml') # pure ruby yaml, so we can better control output. see https://github.com/afunai/ya2yaml
s.add_runtime_dependency('json_pure') # pure ruby json, so we can better control output.
- s.add_runtime_dependency('gpgme') # not essential, but used for some minor stuff in adding sysadmins
end