mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[ruby/prime] Fix gemspec
This commit is contained in:
parent
45b29754cf
commit
6b264e833f
1 changed files with 3 additions and 3 deletions
|
@ -8,15 +8,15 @@ end
|
||||||
Gem::Specification.new do |spec|
|
Gem::Specification.new do |spec|
|
||||||
spec.name = "prime"
|
spec.name = "prime"
|
||||||
spec.version = Prime::VERSION
|
spec.version = Prime::VERSION
|
||||||
spec.authors = ["Yuki Sonoda"]
|
spec.authors = ["Marc-Andre Lafortune"]
|
||||||
spec.email = ["yugui@yugui.jp"]
|
spec.email = ["ruby-core@marc-andre.ca"]
|
||||||
|
|
||||||
spec.summary = %q{Prime numbers and factorization library.}
|
spec.summary = %q{Prime numbers and factorization library.}
|
||||||
spec.description = %q{Prime numbers and factorization library.}
|
spec.description = %q{Prime numbers and factorization library.}
|
||||||
spec.homepage = "https://github.com/ruby/prime"
|
spec.homepage = "https://github.com/ruby/prime"
|
||||||
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
||||||
|
|
||||||
spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/prime.rb", "prime.gemspec"]
|
spec.files = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/prime.rb", "prime.gemspec"]
|
||||||
spec.bindir = "exe"
|
spec.bindir = "exe"
|
||||||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue