The official TradeGecko API RubyGem
This library provides a Ruby interface to publicly available (beta) API for TradeGecko.
If you are unfamiliar with the TradeGecko API, you can read the documentation located at http://developer.tradegecko.com
Add this line to your application's Gemfile:
gem 'gecko'
And then execute:
$ bundle
Or install it yourself as:
$ gem install gecko
client = Gecko::Client.new(CLIENT_ID, CLIENT_SECRET)
client.access_token = existing_access_token
products = client.Product.where(q: "Gecko")
#=> [<Gecko::Record::Product id=1 name="Geckotron">, <Gecko::Record::Product id=3 name="Green Gecko">]
client.Product.find(123)
#=> <Gecko::Record::Product id=123 name="Geckotron">
client.Product.find_many(123, 124)
#=> [<Gecko::Record::Product id=123 name="Geckotron">, <Gecko::Record::Product id=124 name="Salamander">
client.Product.where(ids: [123, 124])
#=> [<Gecko::Record::Product id=123 name="Geckotron">, <Gecko::Record::Product id=124 name="Salamander">
The Gecko gem ships with a basic identity map
client.Product.find(123)
# Makes an API request
client.Product.find(123)
# Returned from identity map on second request, no API request
client.Product.fetch(123)
# Does not use identity map and makes request regardless
client.Product.find_many([123, 124])
# Will return 123 from memory and make request for 124
client.Product.where(ids: [123, 124])
# Does not use identity map and makes request regardless
geckobot = client.Product.build(name: "Geckobot", product_type: "Robot")
#=> <Gecko::Record::Product id=nil name="Geckobot" product_type: "Robot">
geckobot.persisted?
#=> false
The Gecko gem supports instrumentation via AS::Notifications.
You can subscribe to API calls by subscribing to 'request.gecko'
notifications
ActiveSupport::Notifications.subscribe('request.gecko') do |name, start, finish, id, payload|
# Do Something
end
- Saving records
- Complete record collection
- Handle API Errors
- Clean up Access Token management
- Fork it ( http://github.com/[my-github-username]/gecko/fork )
- 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