summaryrefslogtreecommitdiff
path: root/bundler.gemspec
diff options
context:
space:
mode:
authorRohit Arondekar <rohit.arondekar@gmail.com>2014-12-21 21:54:08 +0530
committerRohit Arondekar <rohit.arondekar@gmail.com>2014-12-21 21:54:08 +0530
commitccb06d14451c0e762dfc207f93ac2286881d168a (patch)
tree919602427e517e89f99dc42c698fb416f53ae0aa /bundler.gemspec
parentff00d6c88e99db636a6c5a0cbc829446c507bbc3 (diff)
downloadbundler-ccb06d14451c0e762dfc207f93ac2286881d168a.tar.gz
Fix warnings in test suite and gemspec
Diffstat (limited to 'bundler.gemspec')
-rw-r--r--bundler.gemspec38
1 files changed, 19 insertions, 19 deletions
diff --git a/bundler.gemspec b/bundler.gemspec
index 6d11d7d006..bd7e32e7c9 100644
--- a/bundler.gemspec
+++ b/bundler.gemspec
@@ -3,29 +3,29 @@ lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'bundler/version'
-Gem::Specification.new do |spec|
- spec.name = 'bundler'
- spec.version = Bundler::VERSION
- spec.licenses = ['MIT']
- spec.authors = ["André Arko", "Terence Lee", "Carl Lerche", "Yehuda Katz"]
- spec.email = ["andre.arko+terence.lee@gmail.com"]
- spec.homepage = "http://bundler.io"
- spec.summary = %q{The best way to manage your application's dependencies}
- spec.description = %q{Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably}
+Gem::Specification.new do |s|
+ s.name = 'bundler'
+ s.version = Bundler::VERSION
+ s.licenses = ['MIT']
+ s.authors = ["André Arko", "Terence Lee", "Carl Lerche", "Yehuda Katz"]
+ s.email = ["andre.arko+terence.lee@gmail.com"]
+ s.homepage = "http://bundler.io"
+ 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}
- spec.required_ruby_version = '>= 1.8.7'
- spec.required_rubygems_version = '>= 1.3.6'
+ s.required_ruby_version = '>= 1.8.7'
+ s.required_rubygems_version = '>= 1.3.6'
- spec.add_development_dependency 'mustache', '0.99.6'
- spec.add_development_dependency 'rdiscount', '~> 1.6'
- spec.add_development_dependency 'ronn', '~> 0.7.3'
- spec.add_development_dependency 'rspec', '~> 3.0'
+ s.add_development_dependency 'mustache', '0.99.6'
+ s.add_development_dependency 'rdiscount', '~> 1.6'
+ s.add_development_dependency 'ronn', '~> 0.7.3'
+ s.add_development_dependency 'rspec', '~> 3.0'
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
+ s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
# we don't check in man pages, but we need to ship them because
# we use them to generate the long-form help for each command.
- spec.files += Dir.glob('lib/bundler/man/**/*')
+ s.files += Dir.glob('lib/bundler/man/**/*')
- spec.executables = %w(bundle bundler)
- spec.require_paths = ["lib"]
+ s.executables = %w(bundle bundler)
+ s.require_paths = ["lib"]
end