Sha256: c8dbc3af6be391b1f820cbecbd5cc2e97a73c1d4ffa210f895113296fb54dfa9

Contents?: true

Size: 1.71 KB

Versions: 1

Compression:

Stored size: 1.71 KB

Contents

# coding: utf-8
# frozen_string_literal: true
lib = File.expand_path("../lib/", __FILE__)
$:.unshift lib unless $:.include?(lib)
require "bundler/version"

Gem::Specification.new do |s|
  s.name        = "bundler"
  s.version     = Bundler::VERSION
  s.license     = "MIT"
  s.authors     = ["André Arko", "Samuel Giddins"]
  s.email       = ["team@bundler.io"]
  s.homepage    = "http://bundler.io"
  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_ruby_version     = ">= 1.8.7"
  s.required_rubygems_version = ">= 1.3.6"

  s.add_development_dependency "automatiek", "~> 0.1.0"
  s.add_development_dependency "mustache",   "0.99.6"
  s.add_development_dependency "rake",       "~> 10.0"
  s.add_development_dependency "rdiscount",  "~> 2.2"
  s.add_development_dependency "ronn",       "~> 0.7.3"
  s.add_development_dependency "rspec",      "~> 3.5"

  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.
  s.files += Dir.glob("man/**/*")

  s.bindir        = "exe"
  s.executables   = %w(bundle bundler)
  s.require_paths = ["lib"]

  s.post_install_message = <<-END.lines.map(&:strip).join(" ")
    Did you know that maintaining and improving Bundler and RubyGems.org costs
    more than $25,000 USD every month? Help us keep the gem ecosystem free for
    everyone by joining the hundreds of companies and individuals who help
    cover these costs: https://ruby.to/support-bundler
  END
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bundler-1.14.4 bundler.gemspec