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