trakt 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,13 @@
1
+ module Trakt
2
+ class Genres
3
+ include Connection
4
+ def movies
5
+ require_settings %w|apikey|
6
+ get "/genres/movies.json",''
7
+ end
8
+ def shows
9
+ require_settings %w|apikey|
10
+ get "/genres/shows.json",''
11
+ end
12
+ end
13
+ end
@@ -1,3 +1,3 @@
1
1
  module Trakt
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trakt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -77,6 +77,7 @@ files:
77
77
  - lib/trakt/calendar.rb
78
78
  - lib/trakt/connection.rb
79
79
  - lib/trakt/friends.rb
80
+ - lib/trakt/genres.rb
80
81
  - lib/trakt/list.rb
81
82
  - lib/trakt/movie.rb
82
83
  - lib/trakt/movies.rb