Sha256: b11b7c4300433c04645b2c0a7ed4308e1b795593f17f24c0ab330be62d1bd606
Contents?: true
Size: 1.52 KB
Versions: 3
Compression:
Stored size: 1.52 KB
Contents
# -*- encoding: utf-8 -*- $:.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 = %q{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.} s.email = %q{developers@jadedpixel.com} s.homepage = %q{http://www.shopify.com/partners/apps} s.extra_rdoc_files = [ "LICENSE", "README.md" ] s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } 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.add_dependency("activeresource") dev_dependencies = [['mocha', '>= 0.9.8'], ['fakeweb'], ['minitest', '~> 4.0'], ['rake'] ] if s.respond_to?(:add_development_dependency) dev_dependencies.each { |dep| s.add_development_dependency(*dep) } else dev_dependencies.each { |dep| s.add_dependency(*dep) } end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
shopify_api-4.0.2 | shopify_api.gemspec |
shopify_api-4.0.1 | shopify_api.gemspec |
shopify_api-4.0.0 | shopify_api.gemspec |