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-08 01:19:04 -04:00
|
|
|
"bug_tracker_uri" => "https://github.com/rubygems/bundler/issues",
|
|
|
|
"changelog_uri" => "https://github.com/rubygems/bundler/blob/master/CHANGELOG.md",
|
2018-11-02 19:07:56 -04:00
|
|
|
"homepage_uri" => "https://bundler.io/",
|
2020-05-08 01:19:04 -04:00
|
|
|
"source_code_uri" => "https://github.com/rubygems/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"
|
2019-07-11 05:33:03 -04:00
|
|
|
s.required_rubygems_version = ">= 2.5.2"
|
2018-11-02 19:07:56 -04:00
|
|
|
|
2020-05-07 03:15:53 -04:00
|
|
|
s.files = (Dir.glob("lib/bundler/**/*", File::FNM_DOTMATCH) + Dir.glob("man/bundler*") + Dir.glob("libexec/bundle*")).reject {|f| File.directory?(f) }
|
2019-01-04 08:10:58 -05:00
|
|
|
|
2020-05-07 03:15:53 -04:00
|
|
|
s.files += ["lib/bundler.rb"]
|
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
|