File: oj-introspect.gemspec

package info (click to toggle)
ruby-oj-introspect 0.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 164 kB
  • sloc: ansic: 193; ruby: 63; makefile: 7; sh: 4
file content (26 lines) | stat: -rw-r--r-- 1,116 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
24
25
26
require_relative 'lib/oj/introspect/version'

Gem::Specification.new do |spec|
  spec.name          = "oj-introspect"
  spec.version       = Oj::Introspect::VERSION
  spec.authors       = ["Mehmet Emin INAC"]
  spec.email         = ["mehmetemininac@gmail.com"]

  spec.summary       = "Oj introspect parser."
  spec.description   = "Embeds start and end byte offsets of JSON objects into generated Ruby hashes."
  spec.homepage      = "https://github.com/meinac/oj-introspect"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")

  # spec.metadata["homepage_uri"] = spec.homepage

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.glob('**/*').reject { |f| f.match(%r{^(test|spec|features|debian)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.extensions    = ["ext/oj-introspect/extconf.rb"]

  spec.add_dependency "oj", ">=3.13.23"
end