shopify_api.gemspec 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. $:.push(File.expand_path("../lib", __FILE__))
  2. require "shopify_api/version"
  3. Gem::Specification.new do |s|
  4. s.name = %q{shopify_api}
  5. s.version = ShopifyAPI::VERSION
  6. s.author = "Shopify"
  7. s.summary = %q{The Shopify API gem is a lightweight gem for accessing the Shopify admin REST web services}
  8. s.description = <<~HERE
  9. The Shopify API gem allows Ruby developers to programmatically access the admin
  10. section of Shopify stores. The API is implemented as JSON or XML over HTTP using
  11. all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product, or
  12. Collection, has its own URL and is manipulated in isolation.
  13. HERE
  14. s.email = %q{developers@jadedpixel.com}
  15. s.homepage = %q{http://www.shopify.com/partners/apps}
  16. s.metadata['allowed_push_host'] = 'https://rubygems.org'
  17. s.extra_rdoc_files = [
  18. "LICENSE",
  19. "README.md",
  20. ]
  21. s.files = `git ls-files`.split("\n")
  22. s.test_files = `git ls-files -- {test}/*`.split("\n")
  23. s.rdoc_options = ["--charset=UTF-8"]
  24. s.summary = %q{ShopifyAPI is a lightweight gem for accessing the Shopify admin REST web services}
  25. s.license = "MIT"
  26. s.required_ruby_version = ">= 2.4"
  27. s.add_runtime_dependency("activeresource", ">= 4.1.0", "< 6.0.0")
  28. s.add_runtime_dependency("rack")
  29. s.add_runtime_dependency("graphql-client")
  30. s.add_development_dependency("mocha", ">= 1.4.0")
  31. s.add_development_dependency("webmock")
  32. s.add_development_dependency("minitest", ">= 4.0")
  33. s.add_development_dependency("rake")
  34. s.add_development_dependency("timecop")
  35. s.add_development_dependency("rubocop-shopify")
  36. s.add_development_dependency("pry")
  37. s.add_development_dependency("pry-byebug")
  38. end