countable.rb 229 B

1234567891011121314
  1. module ShopifyAPI
  2. module Countable
  3. def count(options = {})
  4. data = get(:count, options)
  5. count = case data
  6. when Hash then data["count"]
  7. else data
  8. end
  9. Integer(count)
  10. end
  11. end
  12. end