countable.rb 119 B

1234567
  1. module ShopifyAPI
  2. module Countable
  3. def count(options = {})
  4. Integer(get(:count, options))
  5. end
  6. end
  7. end