Sha256: dd6b88a1fc56204f8f2ddce6e8e4d10c06d4c414c052799ce6a02c0711c8986e
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
# coding: utf-8 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.net"] 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} spec.required_ruby_version = '>= 1.8.7' spec.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.0.beta1' spec.files = `git ls-files -z`.split("\x0") spec.files += Dir.glob('lib/bundler/man/**/*') # man/ is ignored by git spec.test_files = spec.files.grep(%r{^spec/}) spec.executables = %w(bundle bundler) spec.require_paths = ["lib"] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bundler-1.6.9 | bundler.gemspec |
bundler-1.6.8 | bundler.gemspec |