diff options
author | Charles Oliver Nutter <headius@headius.com> | 2010-08-03 12:21:11 -0500 |
---|---|---|
committer | Charles Oliver Nutter <headius@headius.com> | 2010-08-03 12:21:11 -0500 |
commit | 2288d74466463d34a5054ef413e099c850cd832b (patch) | |
tree | 76db71c439f26b5c3b7e60fb15178a2bce92c2fb /json-jruby.gemspec | |
parent | 6ebee56297dfd9c380f8f8fb6c0b8bb5254901b7 (diff) | |
download | json-2288d74466463d34a5054ef413e099c850cd832b.tar.gz |
Merge JRuby-compatible extension into json proper.
Diffstat (limited to 'json-jruby.gemspec')
-rw-r--r-- | json-jruby.gemspec | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/json-jruby.gemspec b/json-jruby.gemspec new file mode 100644 index 0000000..144f650 --- /dev/null +++ b/json-jruby.gemspec @@ -0,0 +1,20 @@ +#! /usr/bin/env jruby +require "rubygems" + +spec = Gem::Specification.new do |s| + s.name = "json" + s.version = File.read("VERSION").chomp + s.summary = "JSON implementation for JRuby" + s.description = "A JSON implementation as a JRuby extension." + s.author = "Daniel Luz" + s.email = "dev+ruby@mernen.com" + s.homepage = "http://json-jruby.rubyforge.org/" + s.platform = 'java' + s.rubyforge_project = "json-jruby" + + s.files = Dir["{docs,lib,tests}/**/*"] +end + +if $0 == __FILE__ + Gem::Builder.new(spec).build +end |