2018-11-03 02:07:56 +03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
begin
|
2019-06-01 12:49:40 +03:00
|
|
|
require_relative "lib/bundler/version"
|
2018-11-03 02:07:56 +03:00
|
|
|
rescue LoadError
|
|
|
|
# for Ruby core repository
|
2019-06-01 12:49:40 +03:00
|
|
|
require_relative "version"
|
2018-11-03 02:07:56 +03: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 09:01:35 +03:00
|
|
|
s.homepage = "https://bundler.io"
|
2018-11-03 02:07:56 +03: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"
|
|
|
|
|
2022-09-07 08:13:04 +03:00
|
|
|
s.metadata = {
|
|
|
|
"bug_tracker_uri" => "https://github.com/rubygems/rubygems/issues?q=is%3Aopen+is%3Aissue+label%3ABundler",
|
|
|
|
"changelog_uri" => "https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md",
|
|
|
|
"homepage_uri" => "https://bundler.io/",
|
|
|
|
"source_code_uri" => "https://github.com/rubygems/rubygems/tree/master/bundler",
|
|
|
|
}
|
2018-11-03 02:07:56 +03:00
|
|
|
|
2023-10-26 23:12:02 +03:00
|
|
|
s.required_ruby_version = ">= 3.0.0"
|
2023-10-27 21:43:26 +03:00
|
|
|
|
|
|
|
# It should match the RubyGems version shipped with `required_ruby_version` above
|
|
|
|
s.required_rubygems_version = ">= 3.2.3"
|
2018-11-03 02:07:56 +03:00
|
|
|
|
2021-04-21 14:54:29 +03:00
|
|
|
s.files = Dir.glob("lib/bundler{.rb,/**/*}", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
|
2019-01-04 16:10:58 +03:00
|
|
|
|
2021-04-21 14:54:29 +03:00
|
|
|
# include the gemspec itself because warbler breaks w/o it
|
|
|
|
s.files += %w[lib/bundler/bundler.gemspec]
|
2018-11-03 02:07:56 +03:00
|
|
|
|
2023-12-08 01:59:36 +03:00
|
|
|
s.bindir = "exe"
|
2018-11-25 04:20:00 +03:00
|
|
|
s.executables = %w[bundle bundler]
|
2018-11-03 02:07:56 +03:00
|
|
|
s.require_paths = ["lib"]
|
|
|
|
end
|