0.0
No commit activity in last 3 years
No release in over 3 years
Get access to your favorite tv shows and it's episodes details
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.9
~> 10.0
 Project Readme

Thetvdb

A Ruby Wrapper for TVDB API

While there are other existing TVDB gems, none of them offers the following:

  • Retrieving series episodes without having to query for series id first
  • Not having to enter TVDB API key each time a call is made.

Installation

Add this line to your application's Gemfile:

gem 'thetvdb-ruby'

And then execute:

$ bundle

Or install it yourself as:

$ gem install thetvdb-ruby

Usage

Create TheTvDB initializer thetvdb.rb

$ rails g thetvdb

Edit the initializer file and place your TVDB API key

require 'thetvdb' API_KEY = "Your API Key"

Getting shows

To query for shows, use the command

$ show = Thetvdb::Client.new("name of show").get_show

Note to replace "name of show" with the show you want to query

##How I developed it Read on how I developed the gem here