diff options
-rw-r--r-- | leap_cli.gemspec | 6 | ||||
-rw-r--r-- | lib/leap_cli/version.rb | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/leap_cli.gemspec b/leap_cli.gemspec index 3d13b7c..8b520c8 100644 --- a/leap_cli.gemspec +++ b/leap_cli.gemspec @@ -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' diff --git a/lib/leap_cli/version.rb b/lib/leap_cli/version.rb index a283e4e..83c2159 100644 --- a/lib/leap_cli/version.rb +++ b/lib/leap_cli/version.rb @@ -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'] |