forked from Shopify/shopify-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshopify_api.gemspec
More file actions
52 lines (42 loc) · 1.59 KB
/
shopify_api.gemspec
File metadata and controls
52 lines (42 loc) · 1.59 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
$LOAD_PATH.push(File.expand_path("../lib", __FILE__))
require "shopify_api/version"
Gem::Specification.new do |gem|
gem.name = "shopify_api"
gem.version = ShopifyAPI::VERSION
gem.author = ["QuickPay"]
gem.summary = "The gem for accessing the Shopify API"
gem.description = <<~HERE
This gem allows Ruby developers to programmatically access the admin
section of Shopify stores.
HERE
gem.email = ["support@quickpay.net"]
gem.homepage = "http://quickpay.net"
gem.metadata["allowed_push_host"] = "https://rubygems.pkg.github.com/QuickPay"
gem.extra_rdoc_files = [
"LICENSE",
"README.md",
]
gem.files = Dir.chdir(File.expand_path("..", __FILE__)) do
%x(git ls-files -z).split("\x0").reject { |f| f.match(%r{^(test)/}) }
end
gem.rdoc_options = ["--charset=UTF-8"]
gem.license = "MIT"
gem.required_ruby_version = ">= 2.6"
gem.add_runtime_dependency("concurrent-ruby")
gem.add_runtime_dependency("hash_diff")
gem.add_runtime_dependency("httparty")
gem.add_runtime_dependency("jwt")
gem.add_runtime_dependency("oj")
gem.add_runtime_dependency("securerandom")
gem.add_runtime_dependency("sorbet-runtime")
gem.add_runtime_dependency("zeitwerk", "~> 2.5")
gem.add_development_dependency("activesupport")
gem.add_development_dependency "bundler-audit"
gem.add_development_dependency("rake")
gem.add_development_dependency("rubocop")
gem.add_development_dependency("rubocop-shopify")
gem.add_development_dependency("rubocop-sorbet")
gem.add_development_dependency("sorbet")
gem.add_development_dependency("tapioca")
end