diff options
author | Carlhuda <carlhuda@engineyard.com> | 2010-04-01 12:03:25 -0700 |
---|---|---|
committer | Carlhuda <carlhuda@engineyard.com> | 2010-04-01 12:03:57 -0700 |
commit | 1da7eb3586fa147c25fdf58459eaeaf8bf921930 (patch) | |
tree | 1f511692d290976306e143ce8162ffc245d30e54 /bundler.gemspec | |
parent | b57ef8ec97e71a37848465af10d5e22f890974fb (diff) | |
download | bundler-1da7eb3586fa147c25fdf58459eaeaf8bf921930.tar.gz |
Don't generate bundler.gemspec anymore
Diffstat (limited to 'bundler.gemspec')
-rw-r--r-- | bundler.gemspec | 44 |
1 files changed, 19 insertions, 25 deletions
diff --git a/bundler.gemspec b/bundler.gemspec index c17c8b291d..cb295ee630 100644 --- a/bundler.gemspec +++ b/bundler.gemspec @@ -1,31 +1,25 @@ # -*- encoding: utf-8 -*- +lib = File.expand_path('../lib/', __FILE__) +$:.unshift lib unless $:.include?(lib) + +require 'bundler/version' Gem::Specification.new do |s| - s.name = %q{bundler} - s.version = "0.9.14" + s.name = "bundler" + s.version = Bundler::VERSION + s.platform = Gem::Platform::RUBY + s.authors = ["Carl Lerche", "Yehuda Katz", "André Arko"] + s.email = ["carlhuda@engineyard.com"] + s.homepage = "http://github.com/carlhuda/bundler" + 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.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if s.respond_to? :required_rubygems_version= - s.authors = ["Carl Lerche", "Yehuda Katz", "Andr\303\251 Arko"] - s.date = %q{2010-03-30} - s.default_executable = %q{bundle} - s.email = ["carlhuda@engineyard.com"] - s.executables = ["bundle"] - s.files = ["bin/bundle", "lib/bundler/cli.rb", "lib/bundler/definition.rb", "lib/bundler/dependency.rb", "lib/bundler/dsl.rb", "lib/bundler/environment.rb", "lib/bundler/index.rb", "lib/bundler/installer.rb", "lib/bundler/remote_specification.rb", "lib/bundler/resolver.rb", "lib/bundler/rubygems_ext.rb", "lib/bundler/runtime.rb", "lib/bundler/settings.rb", "lib/bundler/setup.rb", "lib/bundler/shared_helpers.rb", "lib/bundler/source.rb", "lib/bundler/spec_set.rb", "lib/bundler/specification.rb", "lib/bundler/templates/environment.erb", "lib/bundler/templates/Gemfile", "lib/bundler/ui.rb", "lib/bundler/vendor/thor/base.rb", "lib/bundler/vendor/thor/core_ext/file_binary_read.rb", "lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb", "lib/bundler/vendor/thor/core_ext/ordered_hash.rb", "lib/bundler/vendor/thor/error.rb", "lib/bundler/vendor/thor/invocation.rb", "lib/bundler/vendor/thor/parser/argument.rb", "lib/bundler/vendor/thor/parser/arguments.rb", "lib/bundler/vendor/thor/parser/option.rb", "lib/bundler/vendor/thor/parser/options.rb", "lib/bundler/vendor/thor/parser.rb", "lib/bundler/vendor/thor/shell/basic.rb", "lib/bundler/vendor/thor/shell/color.rb", "lib/bundler/vendor/thor/shell.rb", "lib/bundler/vendor/thor/task.rb", "lib/bundler/vendor/thor/util.rb", "lib/bundler/vendor/thor/version.rb", "lib/bundler/vendor/thor.rb", "lib/bundler.rb", "LICENSE", "README.md", "ROADMAP.md", "CHANGELOG.md"] - s.homepage = %q{http://github.com/carlhuda/bundler} - s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.6} - s.summary = %q{Bundles are fun} + s.required_rubygems_version = ">= 1.3.6" + s.rubyforge_project = "bundler" - if s.respond_to? :specification_version then - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION - s.specification_version = 3 + s.add_development_dependency "rspec" - if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then - s.add_development_dependency(%q<rspec>, [">= 0"]) - else - s.add_dependency(%q<rspec>, [">= 0"]) - end - else - s.add_dependency(%q<rspec>, [">= 0"]) - end -end + s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md ROADMAP.md CHANGELOG.md) + s.executables = ['bundle'] + s.require_path = 'lib' +end
\ No newline at end of file |