Skip to content

Commit

Permalink
Hey guess what? The git-ignored man pages _are the help_
Browse files Browse the repository at this point in the history
  • Loading branch information
indirect committed Oct 2, 2010
1 parent 1fa4f55 commit 82cc6dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bundler.gemspec
Expand Up @@ -20,9 +20,9 @@ Gem::Specification.new do |s|
s.add_development_dependency "ronn"
s.add_development_dependency "rspec"

s.files = `git ls-files`.split("\n")
s.files = `git ls-files`.split("\n") + Dir.glob("lib/bundler/man/**/*")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.executables = %w(bundle)
s.default_executable = "bundle"
s.require_paths = ["lib"]
end
2 changes: 1 addition & 1 deletion lib/bundler/version.rb
Expand Up @@ -2,5 +2,5 @@ module Bundler
# We're doing this because we might write tests that deal
# with other versions of bundler and we are unsure how to
# handle this better.
VERSION = "1.0.1" unless defined?(::Bundler::VERSION)
VERSION = "1.0.2" unless defined?(::Bundler::VERSION)
end

0 comments on commit 82cc6dd

Please sign in to comment.