summaryrefslogtreecommitdiff
path: root/json-jruby.gemspec
diff options
context:
space:
mode:
authorCharles Oliver Nutter <headius@headius.com>2010-08-03 12:33:13 -0500
committerCharles Oliver Nutter <headius@headius.com>2010-08-03 12:33:13 -0500
commit736a0dc10d08f09bc42c9c37e277da929dc3d465 (patch)
treeb3d18e1aa6cae6b91974b22bda6136882ac7249d /json-jruby.gemspec
parent2288d74466463d34a5054ef413e099c850cd832b (diff)
downloadjson-736a0dc10d08f09bc42c9c37e277da929dc3d465.tar.gz
Move json-jruby.gemspec to json-java.gemspec.
Diffstat (limited to 'json-jruby.gemspec')
-rw-r--r--json-jruby.gemspec20
1 files changed, 0 insertions, 20 deletions
diff --git a/json-jruby.gemspec b/json-jruby.gemspec
deleted file mode 100644
index 144f650..0000000
--- a/json-jruby.gemspec
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /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