Ruby wrapper for the Apple Search API. It makes easy searching for movies, podcasts, music, music videos, audio books, short films, tv shows, softwares and ebooks on the iTunes Store, App Store, iBook Store and Mac App Store by term or by id.
Currently not available outside Github, at least until we have a beta.
Add this line to your application's Gemfile:
gem 'storective'
And then execute:
$ bundle
Or install it yourself as:
$ gem install storective
If you want to search for a generic term, it's so easy:
s = Storective.new
s.search_for('your favorite song')
But also if you want to set any option:
s = Storective.new
s.limit(1).country('IT').search_for('your favorite song')
you can also initialize the instance with your options:
s = Storective.new limit: 1, country: 'IT'
s.search_for('your favorite song')
See Apple website for the complete options list
- Implement search by ID
- Code documentation
- Fork it ( https://github.com/buglite/storective/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 a new Pull Request
Apple, iTunes Store, App Store, iBookstore and Mac App Store are trademarks of Apple Inc.