File: yajl-ruby.gemspec

package info (click to toggle)
ruby-yajl 1.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,036 kB
  • sloc: ansic: 3,068; ruby: 2,619; makefile: 4; sh: 3
file content (23 lines) | stat: -rw-r--r-- 765 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
require './lib/yajl/version'

Gem::Specification.new do |s|
  s.name = %q{yajl-ruby}
  s.version = Yajl::VERSION
  s.license = "MIT"
  s.authors = ["Brian Lopez", "Lloyd Hilaiel"]
  s.email = %q{seniorlopez@gmail.com}
  s.extensions = ["ext/yajl/extconf.rb"]
  s.files = `git ls-files`.split("\n")
  s.homepage = %q{https://github.com/brianmario/yajl-ruby}
  s.require_paths = ["lib"]
  s.summary = %q{Ruby C bindings to the excellent Yajl JSON stream-based parser library.}
  s.required_ruby_version = ">= 2.6.0"

  # tests
  s.add_development_dependency 'rake-compiler'
  s.add_development_dependency 'rspec'
  # benchmarks
  s.add_development_dependency 'activesupport'
  s.add_development_dependency 'json'
  s.add_development_dependency "benchmark-memory"
end