summaryrefslogtreecommitdiff
path: root/bundler.gemspec
diff options
context:
space:
mode:
authorErik Michaels-Ober <sferik@gmail.com>2010-09-09 11:52:53 -0700
committerErik Michaels-Ober <sferik@gmail.com>2010-09-09 11:52:53 -0700
commit60c031d502df49531b1349ef44ac5ad0685892fc (patch)
tree4173ca31480f4675687386378de8c5907b41573c /bundler.gemspec
parent948b57b32f8a19d702bb5d7677699de2a1a0747f (diff)
downloadbundler-60c031d502df49531b1349ef44ac5ad0685892fc.tar.gz
Use the new `bundle gem` defaults
Diffstat (limited to 'bundler.gemspec')
-rw-r--r--bundler.gemspec14
1 files changed, 8 insertions, 6 deletions
diff --git a/bundler.gemspec b/bundler.gemspec
index 2601e275f6..fa657c289a 100644
--- a/bundler.gemspec
+++ b/bundler.gemspec
@@ -11,16 +11,18 @@ Gem::Specification.new do |s|
s.authors = ["Carl Lerche", "Yehuda Katz", "André Arko"]
s.email = ["carlhuda@engineyard.com"]
s.homepage = "http://gembundler.com"
- s.summary = "The best way to manage your application's dependencies"
- s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably"
+ s.summary = %q{The best way to manage your application's dependencies}
+ s.description = %q{Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably}
- s.required_rubygems_version = ">= 1.3.6"
+ s.required_rubygems_version = [">= 1.3.6", "< 2.0"]
s.rubyforge_project = "bundler"
s.add_development_dependency "ronn"
s.add_development_dependency "rspec"
- s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md ROADMAP.md CHANGELOG.md ISSUES.md)
- s.executables = ['bundle']
- s.require_path = 'lib'
+ s.files = `git ls-files`.split("\n")
+ 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.default_executable = "bundle"
+ s.require_paths = ["lib"]
end