public
Description: Java port of the json gem, for JRuby
Homepage: http://json-jruby.rubyforge.org/
Clone URL: git://github.com/mernen/json-jruby.git
json-jruby / json-jruby.gemspec
100644 21 lines (17 sloc) 0.54 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/bin/env jruby
require "rubygems"
 
spec = Gem::Specification.new do |s|
  s.name = "json-jruby"
  s.version = File.read("VERSION").chomp
  s.author = "Daniel Luz"
  s.email = "mernen+rubyforge@gmail.com"
  s.homepage = "http://rubyforge.org/projects/json-jruby/"
  s.platform = Gem::Platform::CURRENT
  s.summary = "A JSON implementation as a JRuby extension"
  s.rubyforge_project = "json-jruby"
 
  s.files = Dir["{docs,lib,tests}/**/*"]
  s.test_files << "tests/runner.rb"
end
 
if $0 == __FILE__
  Gem::Builder.new(spec).build
end