mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Adjust the release version of ruby2_keywords
This commit is contained in:
parent
25689024cf
commit
55a79b648c
1 changed files with 16 additions and 3 deletions
|
@ -1,10 +1,23 @@
|
|||
_VERSION = "0.0.5"
|
||||
abort "Version must not reach 1" if _VERSION[/\d+/].to_i >= 1
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "ruby2_keywords"
|
||||
s.version = "1.0.0"
|
||||
s.version = _VERSION
|
||||
s.summary = "Shim library for Module#ruby2_keywords"
|
||||
s.homepage = "https://github.com/ruby/ruby2_keywords"
|
||||
s.licenses = ["Ruby", "BSD-2-Clause"]
|
||||
s.authors = ["Nobuyoshi Nakada"]
|
||||
s.require_paths = []
|
||||
s.files = []
|
||||
s.require_paths = ["lib"]
|
||||
s.rdoc_options = ["--main", "README.md"]
|
||||
s.extra_rdoc_files = [
|
||||
"LICENSE",
|
||||
"README.md",
|
||||
"ChangeLog",
|
||||
*Dir.glob("#{__dir__}/logs/ChangeLog-*[^~]").map {|path| path[(__dir__.size+1)..-1]},
|
||||
]
|
||||
s.files = [
|
||||
"lib/ruby2_keywords.rb",
|
||||
]
|
||||
s.required_ruby_version = '>= 2.0.0'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue