Privateer provides an interface for integrating private apps with the Shopify API.
Add this line to your application's Gemfile:
gem 'privateer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install privateer
store = Privateer::Connection.new(store_name: 'test', api_key: 'testkey', password: 'secret')
The Shopify API may move faster than this gem gets updated. To cope with that we have four basic methods exposed by Privateer::Connection to allow you to work around things that are missing in our implementation:
store.get('products', {})
store.post('products', {})
store.put('products', {})
store.delete('products', {})
Everything in this gem is built on those four core methods, and since we expose them to you it is easy to make up for anything we happen to miss.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request

