+++ /dev/null
-PATH
- remote: .
- specs:
- leap_cli (0.0.1)
- capistrano
- gli (~> 2.3)
- gpgme
- highline
- json_pure
- net-ssh
- terminal-table
-
-PATH
- remote: vendor/supply_drop
- specs:
- supply_drop (0.12.0)
- capistrano (>= 2.5.21)
-
-GEM
- remote: http://rubygems.org/
- specs:
- capistrano (2.13.4)
- highline
- net-scp (>= 1.0.0)
- net-sftp (>= 2.0.0)
- net-ssh (>= 2.0.14)
- net-ssh-gateway (>= 1.1.0)
- gli (2.4.1)
- gpgme (2.0.1)
- highline (1.6.15)
- json_pure (1.7.5)
- net-scp (1.0.4)
- net-ssh (>= 1.99.1)
- net-sftp (2.0.5)
- net-ssh (>= 2.0.9)
- net-ssh (2.6.1)
- net-ssh-gateway (1.1.0)
- net-ssh (>= 1.99.1)
- rake (0.9.2.2)
- terminal-table (1.4.5)
-
-PLATFORMS
- ruby
-
-DEPENDENCIES
- leap_cli!
- rake
- supply_drop!
##
s.name = 'leap_cli'
s.version = LeapCli::VERSION
- s.author = 'LEAP'
+ s.author = 'LEAP Encryption Access Project'
s.email = 'root@leap.se'
s.homepage = 'https://leap.se'
s.platform = Gem::Platform::RUBY
- s.summary = 'Command line interface to the LEAP platform.'
- s.description = 'Provides the command "leap", used to manage a bevy of servers running the LEAP platform from the comfort of your own home.'
+ s.summary = LeapCli::SUMMARY
+ s.description = LeapCli::DESCRIPTION
##
## GEM FILES
s.files = `find lib vendor -name '*.rb'`.split("\n") << "bin/leap"
s.require_paths << 'lib'
+ s.require_paths << 'vendor/supply_drop/lib'
s.bindir = 'bin'
s.executables << 'leap'
module LeapCli
unless defined?(LeapCli::VERSION)
VERSION = '0.0.1'
+ SUMMARY = 'Command line interface to the LEAP platform'
+ DESCRIPTION = 'Provides the command "leap", used to manage a bevy of servers running the LEAP platform from the comfort of your own home.'
end
end