]> gitweb.fluxo.info Git - leap/leap_cli.git/commitdiff
updated gemspec, removed gemfile.lock
authorelijah <elijah@riseup.net>
Thu, 25 Oct 2012 20:47:13 +0000 (13:47 -0700)
committerelijah <elijah@riseup.net>
Thu, 25 Oct 2012 20:47:13 +0000 (13:47 -0700)
.gitignore [new file with mode: 0644]
Gemfile.lock [deleted file]
leap_cli.gemspec
lib/leap_cli/version.rb

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..26e7265
--- /dev/null
@@ -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 (file)
index 43d5d15..0000000
+++ /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!
index b0c9a9e6dee698bcf26cceed849a2e685e10030a..94c50a793eb871decfdc5314e1e412fdb449f09d 100644 (file)
@@ -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'
index 5900ee53d25bca4bc16f6b1d02407bbd8e2322c2..21a1d0bd4870d2ddc2fb3cab7bcbe0f2c4d03df2 100644 (file)
@@ -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