File: json-java.gemspec

package info (click to toggle)
ruby-json 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,052 kB
  • ctags: 1,122
  • sloc: java: 3,398; ansic: 3,332; ruby: 2,784; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 549 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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.license = "Ruby"

  s.files = Dir["{docs,lib,tests}/**/*"]
end

if $0 == __FILE__
  Gem::Builder.new(spec).build
else
  spec
end