forked from ohler55/oj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoj.gemspec
More file actions
27 lines (20 loc) · 709 Bytes
/
Copy pathoj.gemspec
File metadata and controls
27 lines (20 loc) · 709 Bytes
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
26
27
require 'date'
require File.join(File.dirname(__FILE__), 'lib/oj/version')
Gem::Specification.new do |s|
s.name = "oj"
s.version = ::Oj::VERSION
s.authors = "Peter Ohler"
s.date = Date.today.to_s
s.email = "peter@ohler.com"
s.homepage = "http://www.ohler.com/oj"
s.summary = "A fast JSON parser and serializer."
s.description = %{The fastest JSON parser and object serializer. }
s.files = Dir["{lib,ext,test}/**/*.{rb,h,c}"] + ['LICENSE', 'README.md']
s.extensions = ["ext/oj/extconf.rb"]
# s.executables = []
s.require_paths = ["lib", "ext"]
s.has_rdoc = true
s.extra_rdoc_files = ['README.md']
s.rdoc_options = ['--main', 'README.md']
s.rubyforge_project = 'oj'
end