diff options
author | Andre Arko <andre@arko.net> | 2011-04-01 10:46:27 -0700 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2011-04-01 10:46:27 -0700 |
commit | b057fe1dd8f293545506b3df749274232e3bf40c (patch) | |
tree | 978307a4bd61ff49e741b21a0221e149f759bedd /bundler.gemspec | |
parent | 25f802e7c24f4dc938f22ccf4fdf008660776128 (diff) | |
download | bundler-b057fe1dd8f293545506b3df749274232e3bf40c.tar.gz |
Remove deprecated default_executable, update email
Diffstat (limited to 'bundler.gemspec')
-rw-r--r-- | bundler.gemspec | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bundler.gemspec b/bundler.gemspec index 20807a09d8..cb7f795c29 100644 --- a/bundler.gemspec +++ b/bundler.gemspec @@ -8,8 +8,8 @@ Gem::Specification.new do |s| s.name = "bundler" s.version = Bundler::VERSION s.platform = Gem::Platform::RUBY - s.authors = ["Carl Lerche", "Yehuda Katz", "André Arko", "Terence Lee"] - s.email = ["carlhuda@engineyard.com"] + s.authors = ["André Arko", "Terence Lee", "Carl Lerche", "Yehuda Katz"] + s.email = ["andre@arko.net"] s.homepage = "http://gembundler.com" 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} @@ -25,6 +25,5 @@ Gem::Specification.new do |s| s.files = `git ls-files`.split("\n") + man_files s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = %w(bundle) - s.default_executable = "bundle" s.require_paths = ["lib"] end |