TvrageApi
tvrage_api is a simple ruby client for accessing TV shows information from the tvrage.com API.
Getting started
You can add it to your Gemfile with:
gem 'tvrage_api'
Run the bundle command to install it.
How to use
There is one entry point:
client = TvrageApi::Client.new
Search show by name:
client = TvrageApi::Client.new
client.search.by_name('buffy')
client.search.full_by_name('buffy')
Search show by id:
client = TvrageApi::Client.new
client.show.find('123')
client.show.find_full('123')
client.show.episodes('123') # show with all episodes
client.show.episode('123', season, episode) # show with specific episode
Search all show ids:
client = TvrageApi::Client.new
client.update.all
Contributing
- 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




