2018-11-02 19:07:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
begin
|
2019-06-01 05:49:40 -04:00
|
|
|
require_relative "lib/bundler/version"
|
2018-11-02 19:07:56 -04:00
|
|
|
rescue LoadError
|
|
|
|
# for Ruby core repository
|
2019-06-01 05:49:40 -04:00
|
|
|
require_relative "version"
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "bundler"
|
|
|
|
s.version = Bundler::VERSION
|
|
|
|
s.license = "MIT"
|
|
|
|
s.authors = [
|
|
|
|
"André Arko", "Samuel Giddins", "Colby Swandale", "Hiroshi Shibata",
|
|
|
|
"David Rodríguez", "Grey Baker", "Stephanie Morillo", "Chris Morris", "James Wen", "Tim Moore",
|
|
|
|
"André Medeiros", "Jessica Lynn Suttles", "Terence Lee", "Carl Lerche",
|
|
|
|
"Yehuda Katz"
|
|
|
|
]
|
|
|
|
s.email = ["team@bundler.io"]
|
2019-04-14 02:01:35 -04:00
|
|
|
s.homepage = "https://bundler.io"
|
2018-11-02 19:07:56 -04:00
|
|
|
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"
|
|
|
|
|
|
|
|
if s.respond_to?(:metadata=)
|
|
|
|
s.metadata = {
|
2019-04-14 02:01:35 -04:00
|
|
|
"bug_tracker_uri" => "https://github.com/bundler/bundler/issues",
|
2018-11-02 19:07:56 -04:00
|
|
|
"changelog_uri" => "https://github.com/bundler/bundler/blob/master/CHANGELOG.md",
|
|
|
|
"homepage_uri" => "https://bundler.io/",
|
2019-04-14 02:01:35 -04:00
|
|
|
"source_code_uri" => "https://github.com/bundler/bundler/",
|
2018-11-02 19:07:56 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-06-01 05:49:40 -04:00
|
|
|
s.required_ruby_version = ">= 2.3.0"
|
|
|
|
s.required_rubygems_version = ">= 2.5.0"
|
2018-11-02 19:07:56 -04:00
|
|
|
|
|
|
|
s.add_development_dependency "automatiek", "~> 0.1.0"
|
2019-04-14 02:01:35 -04:00
|
|
|
s.add_development_dependency "rake", "~> 12.0"
|
2018-11-02 19:07:56 -04:00
|
|
|
s.add_development_dependency "ronn", "~> 0.7.3"
|
|
|
|
s.add_development_dependency "rspec", "~> 3.6"
|
2019-06-01 05:49:40 -04:00
|
|
|
s.add_development_dependency "rubocop", "= 0.68.1"
|
|
|
|
s.add_development_dependency "rubocop-performance", "~> 1.1"
|
2018-11-02 19:07:56 -04:00
|
|
|
|
2019-06-01 06:29:56 -04:00
|
|
|
# s.files = Dir.glob("{lib,exe}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
|
2019-01-04 08:10:58 -05:00
|
|
|
|
2018-11-16 18:27:37 -05:00
|
|
|
# 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.
|
2019-06-01 06:29:56 -04:00
|
|
|
# s.files += Dir.glob("man/**/*")
|
2018-11-16 18:27:37 -05:00
|
|
|
# Include the CHANGELOG.md, LICENSE.md, README.md manually
|
2019-06-01 06:29:56 -04:00
|
|
|
# s.files += %w[CHANGELOG.md LICENSE.md README.md]
|
2018-11-16 18:27:37 -05:00
|
|
|
# include the gemspec itself because warbler breaks w/o it
|
2018-11-02 19:07:56 -04:00
|
|
|
s.files += %w[bundler.gemspec]
|
|
|
|
|
2018-11-24 20:20:00 -05:00
|
|
|
s.bindir = "exe"
|
|
|
|
s.executables = %w[bundle bundler]
|
2018-11-02 19:07:56 -04:00
|
|
|
s.require_paths = ["lib"]
|
|
|
|
end
|