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 = {
|
2020-05-11 15:39:29 -04:00
|
|
|
"bug_tracker_uri" => "https://github.com/rubygems/rubygems/issues?q=is%3Aopen+is%3Aissue+label%3ABundler",
|
2020-05-07 14:02:21 -04:00
|
|
|
"changelog_uri" => "https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md",
|
2018-11-02 19:07:56 -04:00
|
|
|
"homepage_uri" => "https://bundler.io/",
|
2020-05-07 14:02:21 -04:00
|
|
|
"source_code_uri" => "https://github.com/rubygems/rubygems/",
|
2018-11-02 19:07:56 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-06-01 05:49:40 -04:00
|
|
|
s.required_ruby_version = ">= 2.3.0"
|
2019-07-11 05:33:03 -04:00
|
|
|
s.required_rubygems_version = ">= 2.5.2"
|
2018-11-02 19:07:56 -04:00
|
|
|
|
2021-04-21 07:54:29 -04:00
|
|
|
s.files = Dir.glob("lib/bundler{.rb,/**/*}", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
|
2019-01-04 08:10:58 -05:00
|
|
|
|
2021-04-21 07:54:29 -04:00
|
|
|
# include the gemspec itself because warbler breaks w/o it
|
|
|
|
s.files += %w[lib/bundler/bundler.gemspec]
|
2018-11-02 19:07:56 -04:00
|
|
|
|
2020-05-07 03:15:53 -04:00
|
|
|
s.bindir = "libexec"
|
2018-11-24 20:20:00 -05:00
|
|
|
s.executables = %w[bundle bundler]
|
2018-11-02 19:07:56 -04:00
|
|
|
s.require_paths = ["lib"]
|
|
|
|
end
|