Merge json and json-java gemspecs
This commit is contained in:
parent
fc9f0cb8c5
commit
925131073d
@ -1,3 +0,0 @@
|
|||||||
require 'mkmf'
|
|
||||||
|
|
||||||
create_makefile('json')
|
|
@ -2,61 +2,13 @@ version = File.foreach(File.join(__dir__, "lib/json/version.rb")) do |line|
|
|||||||
/^\s*VERSION\s*=\s*'(.*)'/ =~ line and break $1
|
/^\s*VERSION\s*=\s*'(.*)'/ =~ line and break $1
|
||||||
end rescue nil
|
end rescue nil
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
spec = Gem::Specification.new do |s|
|
||||||
|
java_ext = Gem::Platform === s.platform && s.platform =~ 'java' || RUBY_ENGINE == 'jruby'
|
||||||
|
|
||||||
s.name = "json"
|
s.name = "json"
|
||||||
s.version = version
|
s.version = version
|
||||||
|
|
||||||
s.summary = "JSON Implementation for Ruby"
|
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 implementation for Ruby", "--main", "README.md"]
|
|
||||||
s.files = [
|
|
||||||
"CHANGES.md",
|
|
||||||
"COPYING",
|
|
||||||
"BSDL",
|
|
||||||
"LEGAL",
|
|
||||||
"README.md",
|
|
||||||
"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/ext/generator/state.rb",
|
|
||||||
"lib/json/generic_object.rb",
|
|
||||||
"lib/json/pure.rb",
|
|
||||||
"lib/json/pure/generator.rb",
|
|
||||||
"lib/json/pure/parser.rb",
|
|
||||||
"lib/json/version.rb",
|
|
||||||
]
|
|
||||||
s.homepage = "https://ruby.github.io/json"
|
s.homepage = "https://ruby.github.io/json"
|
||||||
s.metadata = {
|
s.metadata = {
|
||||||
'bug_tracker_uri' => 'https://github.com/ruby/json/issues',
|
'bug_tracker_uri' => 'https://github.com/ruby/json/issues',
|
||||||
@ -68,4 +20,42 @@ Gem::Specification.new do |s|
|
|||||||
}
|
}
|
||||||
|
|
||||||
s.required_ruby_version = Gem::Requirement.new(">= 2.3")
|
s.required_ruby_version = Gem::Requirement.new(">= 2.3")
|
||||||
|
|
||||||
|
if java_ext
|
||||||
|
s.description = "A JSON implementation as a JRuby extension."
|
||||||
|
s.author = "Daniel Luz"
|
||||||
|
s.email = "dev+ruby@mernen.com"
|
||||||
|
else
|
||||||
|
s.description = "This is a JSON implementation as a Ruby extension in C."
|
||||||
|
s.authors = ["Florian Frank"]
|
||||||
|
s.email = "flori@ping.de"
|
||||||
|
end
|
||||||
|
|
||||||
|
s.licenses = ["Ruby"]
|
||||||
|
|
||||||
|
s.extra_rdoc_files = ["README.md"]
|
||||||
|
s.rdoc_options = ["--title", "JSON implementation for Ruby", "--main", "README.md"]
|
||||||
|
|
||||||
|
s.files = [
|
||||||
|
"CHANGES.md",
|
||||||
|
"COPYING",
|
||||||
|
"BSDL",
|
||||||
|
"LEGAL",
|
||||||
|
"README.md",
|
||||||
|
"json.gemspec",
|
||||||
|
*Dir["lib/**/*.rb"],
|
||||||
|
]
|
||||||
|
|
||||||
|
if java_ext
|
||||||
|
s.platform = 'java'
|
||||||
|
else
|
||||||
|
s.extensions = Dir["ext/json/**/extconf.rb"]
|
||||||
|
s.files += Dir["ext/json/**/*.{c,h,rl}"]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if RUBY_ENGINE == 'jruby' && $0 == __FILE__
|
||||||
|
Gem::Builder.new(spec).build
|
||||||
|
else
|
||||||
|
spec
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user