2016-07-05 07:49:39 -04:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
2015-04-12 05:12:15 -04:00
|
|
|
Gem::Specification.new do |s|
|
2019-07-11 18:25:06 -04:00
|
|
|
s.name = "json"
|
2020-12-17 00:37:45 -05:00
|
|
|
s.version = File.read(File.expand_path('../VERSION', __FILE__)).chomp
|
2016-07-05 07:49:39 -04:00
|
|
|
|
2020-07-06 07:32:09 -04:00
|
|
|
s.summary = "JSON Implementation for Ruby"
|
2019-07-11 18:25:06 -04:00
|
|
|
s.description = "This is a JSON implementation as a Ruby extension in C."
|
2020-07-06 07:32:09 -04:00
|
|
|
s.licenses = ["Ruby"]
|
|
|
|
s.authors = ["Florian Frank"]
|
2019-07-11 18:25:06 -04:00
|
|
|
s.email = "flori@ping.de"
|
2020-07-06 07:32:09 -04:00
|
|
|
|
2019-07-11 18:25:06 -04:00
|
|
|
s.extensions = ["ext/json/ext/generator/extconf.rb", "ext/json/ext/parser/extconf.rb", "ext/json/extconf.rb"]
|
|
|
|
s.extra_rdoc_files = ["README.md"]
|
2020-12-17 00:20:42 -05:00
|
|
|
s.rdoc_options = ["--title", "JSON implementation for Ruby", "--main", "README.md"]
|
2019-11-11 01:56:59 -05:00
|
|
|
s.files = [
|
|
|
|
"CHANGES.md",
|
2020-08-13 23:45:09 -04:00
|
|
|
"LICENSE",
|
2019-11-11 01:56:59 -05:00
|
|
|
"README.md",
|
|
|
|
"VERSION",
|
|
|
|
"ext/json/ext/fbuffer/fbuffer.h",
|
|
|
|
"ext/json/ext/generator/depend",
|
|
|
|
"ext/json/ext/generator/extconf.rb",
|
|
|
|
"ext/json/ext/generator/generator.c",
|
|
|
|
"ext/json/ext/generator/generator.h",
|
|
|
|
"ext/json/ext/parser/depend",
|
|
|
|
"ext/json/ext/parser/extconf.rb",
|
|
|
|
"ext/json/ext/parser/parser.c",
|
|
|
|
"ext/json/ext/parser/parser.h",
|
|
|
|
"ext/json/ext/parser/parser.rl",
|
|
|
|
"ext/json/extconf.rb",
|
|
|
|
"json.gemspec",
|
|
|
|
"lib/json.rb",
|
|
|
|
"lib/json/add/bigdecimal.rb",
|
|
|
|
"lib/json/add/complex.rb",
|
|
|
|
"lib/json/add/core.rb",
|
|
|
|
"lib/json/add/date.rb",
|
|
|
|
"lib/json/add/date_time.rb",
|
|
|
|
"lib/json/add/exception.rb",
|
|
|
|
"lib/json/add/ostruct.rb",
|
|
|
|
"lib/json/add/range.rb",
|
|
|
|
"lib/json/add/rational.rb",
|
|
|
|
"lib/json/add/regexp.rb",
|
|
|
|
"lib/json/add/set.rb",
|
|
|
|
"lib/json/add/struct.rb",
|
|
|
|
"lib/json/add/symbol.rb",
|
|
|
|
"lib/json/add/time.rb",
|
|
|
|
"lib/json/common.rb",
|
|
|
|
"lib/json/ext.rb",
|
|
|
|
"lib/json/generic_object.rb",
|
|
|
|
"lib/json/pure.rb",
|
|
|
|
"lib/json/pure/generator.rb",
|
|
|
|
"lib/json/pure/parser.rb",
|
|
|
|
"lib/json/version.rb",
|
2021-07-29 02:57:58 -04:00
|
|
|
]
|
2019-07-11 18:25:06 -04:00
|
|
|
s.homepage = "http://flori.github.com/json"
|
2020-01-03 10:10:42 -05:00
|
|
|
s.metadata = {
|
|
|
|
'bug_tracker_uri' => 'https://github.com/flori/json/issues',
|
|
|
|
'changelog_uri' => 'https://github.com/flori/json/blob/master/CHANGES.md',
|
|
|
|
'documentation_uri' => 'http://flori.github.io/json/doc/index.html',
|
|
|
|
'homepage_uri' => 'http://flori.github.io/json/',
|
|
|
|
'source_code_uri' => 'https://github.com/flori/json',
|
|
|
|
'wiki_uri' => 'https://github.com/flori/json/wiki'
|
|
|
|
}
|
2020-07-06 07:32:09 -04:00
|
|
|
|
2021-02-22 20:05:13 -05:00
|
|
|
s.required_ruby_version = Gem::Requirement.new(">= 2.3")
|
2015-04-12 05:12:15 -04:00
|
|
|
end
|