1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Update the latest gemspec of prime.

* prime gem didn't use `version.rb` file.
  * Removed development_dependency because they are handled by Gemfile.
This commit is contained in:
Hiroshi SHIBATA 2020-04-08 14:33:22 +09:00
parent 393789f320
commit 3b1029f894
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -16,12 +16,10 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/ruby/prime"
spec.license = "BSD-2-Clause"
spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/prime.rb", "lib/prime/version.rb", "prime.gemspec"]
spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/prime.rb", "prime.gemspec"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "test-unit"
spec.required_ruby_version = ">= 2.5.0"
end