diff options
author | elijah <elijah@riseup.net> | 2012-10-25 13:47:13 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2012-10-25 13:47:13 -0700 |
commit | 36d4b178f1d6834da0d172cf0a10ec54c94714b9 (patch) | |
tree | 30251ef633328548d5b50ea61445037481687d70 | |
parent | a269255b2f51783ba19cbc363759ba9a61038ea0 (diff) | |
download | leap_cli-36d4b178f1d6834da0d172cf0a10ec54c94714b9.tar.gz leap_cli-36d4b178f1d6834da0d172cf0a10ec54c94714b9.tar.bz2 |
updated gemspec, removed gemfile.lock
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Gemfile.lock | 48 | ||||
-rw-r--r-- | leap_cli.gemspec | 7 | ||||
-rw-r--r-- | lib/leap_cli/version.rb | 2 |
4 files changed, 8 insertions, 51 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..26e7265 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +Gemfile.lock +pkg
\ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 43d5d15..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,48 +0,0 @@ -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! diff --git a/leap_cli.gemspec b/leap_cli.gemspec index b0c9a9e..94c50a7 100644 --- a/leap_cli.gemspec +++ b/leap_cli.gemspec @@ -10,12 +10,12 @@ spec = Gem::Specification.new do |s| ## 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 @@ -23,6 +23,7 @@ spec = Gem::Specification.new do |s| 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' diff --git a/lib/leap_cli/version.rb b/lib/leap_cli/version.rb index 5900ee5..21a1d0b 100644 --- a/lib/leap_cli/version.rb +++ b/lib/leap_cli/version.rb @@ -1,5 +1,7 @@ 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 |