forked from Shopify/json-rpc-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_rpc_handler.gemspec
35 lines (26 loc) · 1.15 KB
/
json_rpc_handler.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
31
32
33
34
35
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'json_rpc_handler/version'
Gem::Specification.new do |spec|
spec.name = 'json_rpc_handler'
spec.version = JsonRpcHandler::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Ates Goral']
spec.summary = 'A spec-compliant JSON-RPC 2.0 handler'
spec.homepage = 'https://github.com/Shopify/json-rpc-handler'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1.0'
spec.required_rubygems_version = '>= 1.3.7'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/Shopify/json-rpc-handler/issues',
'changelog_uri' => 'https://github.com/Shopify/json-rpc-handler/blob/main/CHANGELOG.md',
'source_code_uri' => 'https://github.com/Shopify/json-rpc-handler',
'allowed_push_host' => 'https://rubygems.org',
'rubygems_mfa_required' => 'true'
}
spec.files = Dir.glob('{lib}/**/*') + ['LICENSE.md', 'README.md']
spec.extra_rdoc_files = ['README.md']
spec.require_paths = ['lib']
end