1 name = File.basename(__FILE__, ".gemspec")
2 version = ["lib", Array.new(name.count("-")+1).join("/")].find do |dir|
3 break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
4 /^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
8 Gem::Specification.new do |spec|
10 spec.version = version
11 spec.authors = ["Tanaka Akira"]
12 spec.email = ["akr@fsij.org"]
14 spec.summary = %q{Extends the Time class with methods for parsing and conversion.}
15 spec.description = %q{Extends the Time class with methods for parsing and conversion.}
16 spec.homepage = "https://github.com/ruby/time"
17 spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
18 spec.licenses = ["Ruby", "BSD-2-Clause"]
20 spec.metadata["homepage_uri"] = spec.homepage
21 spec.metadata["source_code_uri"] = spec.homepage
23 srcdir, gemspec = File.split(__FILE__)
24 spec.files = Dir.chdir(srcdir) do
25 `git ls-files -z`.split("\x0").reject { |f|
27 f.start_with?(".git", "bin/", "test/", "rakelib/", "Gemfile", "Rakefile")
31 spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
32 spec.require_paths = ["lib"]
34 spec.add_dependency "date"