summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-12-23 08:49:50 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-25 15:32:40 +0900
commit4dbb10f29f3710c7ba5f9062b870e47710f2f735 (patch)
tree489e0ff1de1cfa020e59281af2d834d72d981b11
parentbb4a2351cb86ae7e2603e1280e1eb756c89c7029 (diff)
[flori/json] keyword argument is provided after Ruby 2.0+
https://github.com/flori/json/commit/78ec5e2bd3
-rw-r--r--ext/json/json.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/json.gemspec b/ext/json/json.gemspec
index d8be2e52c6..63665146dd 100644
--- a/ext/json/json.gemspec
+++ b/ext/json/json.gemspec
@@ -123,7 +123,7 @@ Gem::Specification.new do |s|
s.homepage = "http://flori.github.com/json"
s.licenses = ["Ruby"]
s.rdoc_options = ["--title", "JSON implemention for Ruby", "--main", "README.md"]
- s.required_ruby_version = Gem::Requirement.new(">= 1.9")
+ s.required_ruby_version = Gem::Requirement.new(">= 2.0")
s.rubygems_version = "3.0.3"
s.summary = "JSON Implementation for Ruby"
s.test_files = ["tests/test_helper.rb"]