Class: Traktr::User::Library
- Inherits:
-
Endpoint
show all
- Defined in:
- lib/traktr/user/library.rb,
lib/traktr/user/library/shows.rb,
lib/traktr/user/library/movies.rb
Defined Under Namespace
Classes: Movies, Shows
Instance Method Summary
collapse
Methods inherited from Endpoint
#initialize
Instance Method Details
#movies ⇒ Object
4
5
6
|
# File 'lib/traktr/user/library.rb', line 4
def movies
@movies ||= Traktr::User::Library::Movies.new(@client)
end
|
#shows ⇒ Object
8
9
10
|
# File 'lib/traktr/user/library.rb', line 8
def shows
@shows ||= Traktr::User::Library::Shows.new(@client)
end
|