shopify_api.gemspec 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = %q{shopify_api}
  4. s.version = "1.2.6"
  5. s.author = "Shopify"
  6. s.summary = %q{The Shopify API gem is a lightweight gem for accessing the Shopify admin REST web services}
  7. s.description = %q{The Shopify API gem allows Ruby developers to programmatically access the admin section of Shopify stores. The API is implemented as 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.}
  8. s.email = %q{developers@jadedpixel.com}
  9. s.homepage = %q{http://www.shopify.com/partners/apps}
  10. s.extra_rdoc_files = [
  11. "LICENSE",
  12. "README.rdoc"
  13. ]
  14. s.files = `git ls-files`.split("\n")
  15. s.test_files = `git ls-files -- {test}/*`.split("\n")
  16. s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  17. s.rdoc_options = ["--charset=UTF-8"]
  18. s.summary = %q{ShopifyAPI is a lightweight gem for accessing the Shopify admin REST web services}
  19. s.license = 'MIT'
  20. s.add_dependency("activeresource", [">= 2.2.2"])
  21. s.add_dependency("thor", [">= 0.14.4"])
  22. if s.respond_to?(:add_development_dependency)
  23. s.add_development_dependency("mocha", ">= 0.9.8")
  24. else
  25. s.add_dependency("mocha", ">= 0.9.8")
  26. end
  27. end