shopify_appstore

This is a simple gem to either list all of the apps with their handle, name, rank, url, image and description. You can either grab the entire list or do a find for a specific app, e.g.:

Shopify::AppStore.top(:newest).each do |app|
  puts app.name
end

Where you can sort by :newest, :popular, or :highest_rated. You can also do a find on a specific app:

puts Shopify::AppStore.find('directed-edge-expressrex', :popular)[:rank]

Contributing to shopify_appstore

Copyright © 2011 Scott Wheeler. See LICENSE.txt for further details.