forked from brianmario/yajl-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyajl-ruby.gemspec
27 lines (24 loc) · 870 Bytes
/
yajl-ruby.gemspec
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
require './lib/yajl/version'
Gem::Specification.new do |s|
s.name = %q{yajl-ruby}
s.version = Yajl::VERSION
s.authors = ["Brian Lopez", "Lloyd Hilaiel"]
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.email = %q{[email protected]}
s.extensions = ["ext/yajl/extconf.rb"]
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = `git ls-files`.split("\n")
s.homepage = %q{http://github.com/brianmario/yajl-ruby}
s.require_paths = ["lib", "ext"]
s.rubygems_version = %q{1.4.2}
s.summary = %q{Ruby C bindings to the excellent Yajl JSON stream-based parser library.}
s.test_files = `git ls-files spec examples`.split("\n")
# tests
s.add_development_dependency 'rake-compiler', ">= 0.7.5"
s.add_development_dependency 'rspec', ">= 2.0.0"
# benchmarks
s.add_development_dependency 'activesupport'
s.add_development_dependency 'json'
end