forked from winebarrel/ruby-jq
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathruby-jq.gemspec
30 lines (25 loc) · 1.05 KB
/
ruby-jq.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
27
28
29
30
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jq/version'
Gem::Specification.new do |spec|
spec.name = 'ruby-jq'
spec.version = JQ::VERSION
spec.author = 'winebarrel'
spec.email = '[email protected]'
spec.description = 'Ruby bindings for jq'
spec.summary = 'Ruby bindings for jq'
spec.homepage = 'https://github.com/winebarrel/ruby-jq'
spec.license = 'MIT'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.extensions = 'ext/extconf.rb'
# spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
# spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'multi_json'
spec.add_runtime_dependency 'mini_portile2', '>= 2.2.0'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rake-compiler'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rubocop'
end