]> gitweb.fluxo.info Git - leap/leap_cli.git/commitdiff
include missing vendor/vagrant_ssh_keys in gem
authorelijah <elijah@riseup.net>
Thu, 15 Nov 2012 21:04:33 +0000 (13:04 -0800)
committerelijah <elijah@riseup.net>
Thu, 15 Nov 2012 21:04:33 +0000 (13:04 -0800)
leap_cli.gemspec
lib/leap_cli/version.rb

index 3d13b7cc30cfb03adfcfaf42f5af78c6df6b0aa5..8b520c8ab3ca3c17419ebcf582d5fdcaf49ab439 100644 (file)
@@ -22,9 +22,11 @@ spec = Gem::Specification.new do |s|
   ## GEM FILES
   ##
 
-  s.files = `find lib vendor -name '*.rb'`.split("\n") << "bin/leap"
+  s.files = `find lib -name '*.rb'`.split("\n")
+  s.files += ["bin/leap"]
+  s.files += `find vendor -name '*.rb'`.split("\n")
+  s.files += `find vendor/vagrant_ssh_keys -name '*.pub' -o -name '*.key'`.split("\n")
   s.require_paths += LeapCli::REQUIRE_PATHS
-
   s.bindir = 'bin'
   s.executables << 'leap'
 
index a283e4ebd61840ffa4ae785c7bc806d7e7d1f04d..83c2159bc96b97c4950b747e9352d4c84ae553b0 100644 (file)
@@ -1,6 +1,6 @@
 module LeapCli
   unless defined?(LeapCli::VERSION)
-    VERSION = '0.1.2'
+    VERSION = '0.1.3'
     SUMMARY = 'Command line interface to the LEAP platform'
     DESCRIPTION = 'The command "leap" can be used to manage a bevy of servers running the LEAP platform from the comfort of your own home.'
     REQUIRE_PATHS = ['lib', 'vendor/supply_drop/lib']