forked from Shopify/shopify-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshopify_api.gemspec
47 lines (39 loc) · 1.63 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
# frozen_string_literal: true
$:.push(File.expand_path("../lib", __FILE__))
require "shopify_api/version"
Gem::Specification.new do |s|
s.name = %q{shopify_api}
s.version = ShopifyAPI::VERSION
s.author = "Shopify"
s.summary = %q{The Shopify API gem is a lightweight gem for accessing the Shopify admin REST web services}
s.description = <<~HERE
The Shopify API gem allows Ruby developers to programmatically access the admin
section of Shopify stores. The API is implemented as JSON or XML over HTTP using
all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product, or
Collection, has its own URL and is manipulated in isolation.
HERE
s.email = %q{[email protected]}
s.homepage = %q{http://www.shopify.com/partners/apps}
s.metadata['allowed_push_host'] = 'https://rubygems.org'
s.extra_rdoc_files = [
"LICENSE",
"README.md",
]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test}/*`.split("\n")
s.rdoc_options = ["--charset=UTF-8"]
s.summary = %q{ShopifyAPI is a lightweight gem for accessing the Shopify admin REST web services}
s.license = "MIT"
s.required_ruby_version = ">= 2.4"
s.add_runtime_dependency("activeresource")
s.add_runtime_dependency("rack")
s.add_runtime_dependency("graphql-client")
s.add_development_dependency("mocha")
s.add_development_dependency("webmock")
s.add_development_dependency("minitest")
s.add_development_dependency("rake")
s.add_development_dependency("timecop")
s.add_development_dependency("rubocop-shopify")
s.add_development_dependency("pry")
s.add_development_dependency("pry-byebug")
end