Sha256: fdc53e791a017708c1404b4c916d28a8c4ae6aebbdcb74cd5ff2747a4c7282bc

Contents?: true

Size: 1.62 KB

Versions: 1

Compression:

Stored size: 1.62 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.rdoc"
  ]
  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", [">= 3.0.0"])
  s.add_dependency("thor", ["~> 0.18.1"])

  if s.respond_to?(:add_development_dependency)
    s.add_development_dependency("mocha", ">= 0.9.8")
    s.add_development_dependency("fakeweb")
    s.add_development_dependency("minitest", "~> 4.0")
    s.add_development_dependency("rake")
  else
    s.add_dependency("mocha", ">= 0.9.8")
    s.add_dependency("fakeweb")
    s.add_dependency("minitest", "~> 4.0")
    s.add_dependency("rake")
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shopify_api-3.2.2 shopify_api.gemspec