Sha256: 5399eb2b9c3c74f6aa3b9c5bccedf80ce9265dbe9ba1718c5c2fc95b13abb026

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 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-prehistoric'
  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}

  spec.add_dependency 'rubysl-securerandom'
  spec.add_dependency 'backports'

  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")
  # 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/**/*')

  spec.test_files  = spec.files.grep(%r{^spec/})
  spec.executables   = %w(bundle bundler)
  spec.require_paths = ["lib"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bundler-prehistoric-1.6.2.2 bundler.gemspec