Module: Tmdb::MovieMethods

Included in:
Connection
Defined in:
lib/tmdb/connection/movie_methods.rb

Instance Method Summary collapse

Instance Method Details

#movie(id, options = {}) ⇒ Object



5
6
7
# File 'lib/tmdb/connection/movie_methods.rb', line 5

def movie(id, options={})
  OpenStruct.new(get("/movie/#{id}", options))
end

#movie_all_changes(options = {}) ⇒ Object



9
10
11
# File 'lib/tmdb/connection/movie_methods.rb', line 9

def movie_all_changes(options={})
  OpenStruct.new(get("/movie/changes", options))
end