diff options
author | Karol Bucek <self@kares.org> | 2020-07-06 13:32:09 +0200 |
---|---|---|
committer | Karol Bucek <self@kares.org> | 2020-07-06 13:32:09 +0200 |
commit | 0662debc5272186a357c16ed5164907cd97d7040 (patch) | |
tree | 3832995d687a065de65683def9f9358fab6db043 /json.gemspec | |
parent | 954c42e380d96f79b8c37eb67a4ece0b7ab14e8a (diff) | |
download | json-0662debc5272186a357c16ed5164907cd97d7040.tar.gz |
unify json-java gemspec with the baseline
Diffstat (limited to 'json.gemspec')
-rw-r--r-- | json.gemspec | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/json.gemspec b/json.gemspec index 0c72e82..8870f88 100644 --- a/json.gemspec +++ b/json.gemspec @@ -4,13 +4,15 @@ Gem::Specification.new do |s| s.name = "json" s.version = File.read('VERSION').chomp - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.require_paths = ["lib"] - s.authors = ["Florian Frank"] + s.summary = "JSON Implementation for Ruby" s.description = "This is a JSON implementation as a Ruby extension in C." + s.licenses = ["Ruby"] + s.authors = ["Florian Frank"] s.email = "flori@ping.de" + s.extensions = ["ext/json/ext/generator/extconf.rb", "ext/json/ext/parser/extconf.rb", "ext/json/extconf.rb"] s.extra_rdoc_files = ["README.md"] + s.rdoc_options = ["--title", "JSON implemention for Ruby", "--main", "README.md"] s.files = [ ".gitignore", ".travis.yml", @@ -128,10 +130,8 @@ Gem::Specification.new do |s| 'source_code_uri' => 'https://github.com/flori/json', 'wiki_uri' => 'https://github.com/flori/json/wiki' } - s.licenses = ["Ruby"] - s.rdoc_options = ["--title", "JSON implemention for Ruby", "--main", "README.md"] + s.required_ruby_version = Gem::Requirement.new(">= 2.0") - s.summary = "JSON Implementation for Ruby" s.test_files = ["tests/test_helper.rb"] s.add_development_dependency("rake", [">= 0"]) |