summaryrefslogtreecommitdiff
path: root/json_pure.gemspec
blob: f964df71c85e42f4aafdc7e47b2b7ae2bca52fa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require File.dirname(__FILE__) + '/constants'

Gem::Specification.new do |s|
  s.name = 'json_pure'
  s.version = PKG_VERSION
  s.summary = PKG_TITLE
  s.description = "This is a JSON implementation in pure Ruby."

  s.files = PKG_FILES

  s.require_path = 'lib'

  s.bindir = "bin"
  s.executables = [ "edit_json.rb", "prettify_json.rb" ]

  s.extra_rdoc_files << 'README'
  s.rdoc_options <<
    '--title' <<  'JSON implemention for ruby' << '--main' << 'README'
  s.test_files.concat Dir['./tests/test_*.rb']

  s.author = "Florian Frank"
  s.email = "flori@ping.de"
  s.homepage = "http://flori.github.com/#{PKG_NAME}"
  s.rubyforge_project = "json"
end