No doubt I am doing something wrong here, but I am following instructions on a new commit from here.
I am getting the following error
uninitialized constant ShopifyAPI::CustomerGroup::Customers
00:33:56 web.1 | /Users/matt/.rvm/gems/ruby-1.9.3-p0/gems/shopify_api-3.0.3/lib/shopify_api/resources/customer_group.rb:4:in `customers''
When running this code
group = ShopifyAPI::CustomerGroup.find(5614012)
customers = group.customers
Here is the gem file mentioned above
group.customerswill not work on the 3.0.3 version of the gem (but that it will in a later version once a pending pull request is merged). Try it with the pending pull request fork referenced in the answer. – Tom Harrison Jr Nov 16 '12 at 2:45Customer.find(:all, :params => {:customer_group_id => customer_group.id})– Matt Warren Nov 16 '12 at 13:09