shopify_api.gemspec 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # -*- encoding: utf-8 -*-
  2. Gem::Specification.new do |s|
  3. s.name = %q{shopify_api}
  4. s.version = "1.2.5"
  5. s.authors = ["Tobias L\303\274tke", "Cody Fauser", "Dennis Theisen", "Edward Ocampo-Gooding"]
  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.extra_rdoc_files = [
  10. "LICENSE",
  11. "README.rdoc"
  12. ]
  13. s.files = [
  14. ".document",
  15. ".gitignore",
  16. "CHANGELOG",
  17. "LICENSE",
  18. "README.rdoc",
  19. "Rakefile",
  20. "lib/shopify_api.rb",
  21. "lib/shopify_api/cli.rb",
  22. "shopify_api.gemspec",
  23. "test/order_test.rb",
  24. "test/shopify_api_test.rb",
  25. "test/test_helper.rb"
  26. ]
  27. s.homepage = %q{http://github.com/Shopify/shopify_api}
  28. s.rdoc_options = ["--charset=UTF-8"]
  29. s.require_paths = ["lib"]
  30. s.rubyforge_project = %q{shopify-api}
  31. s.rubygems_version = %q{1.3.7}
  32. s.summary = %q{ShopifyAPI is a lightweight gem for accessing the Shopify admin REST web services}
  33. s.test_files = [
  34. "test/order_test.rb",
  35. "test/shopify_api_test.rb",
  36. "test/test_helper.rb"
  37. ]
  38. s.executables = ['shopify']
  39. s.license = 'MIT'
  40. if s.respond_to? :specification_version
  41. current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
  42. s.specification_version = 3
  43. end
  44. s.add_dependency("activeresource", [">= 2.2.2"])
  45. s.add_dependency("thor", [">= 0.14.4"])
  46. if s.respond_to?(:add_development_dependency)
  47. s.add_development_dependency("mocha", ">= 0.9.8")
  48. else
  49. s.add_dependency("mocha", ">= 0.9.8")
  50. end
  51. end