shopify_api.gemspec 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = %q{shopify_api}
  4. s.version = "1.2.5"
  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 = [
  15. ".document",
  16. ".gitignore",
  17. "CHANGELOG",
  18. "LICENSE",
  19. "README.rdoc",
  20. "Rakefile",
  21. "lib/shopify_api.rb",
  22. "lib/shopify_api/cli.rb",
  23. "shopify_api.gemspec",
  24. "test/order_test.rb",
  25. "test/shopify_api_test.rb",
  26. "test/test_helper.rb"
  27. ]
  28. s.rdoc_options = ["--charset=UTF-8"]
  29. s.summary = %q{ShopifyAPI is a lightweight gem for accessing the Shopify admin REST web services}
  30. s.test_files = [
  31. "test/order_test.rb",
  32. "test/shopify_api_test.rb",
  33. "test/test_helper.rb"
  34. ]
  35. s.executables = ['shopify']
  36. s.license = 'MIT'
  37. s.add_dependency("activeresource", [">= 2.2.2"])
  38. s.add_dependency("thor", [">= 0.14.4"])
  39. if s.respond_to?(:add_development_dependency)
  40. s.add_development_dependency("mocha", ">= 0.9.8")
  41. else
  42. s.add_dependency("mocha", ">= 0.9.8")
  43. end
  44. end