class TvrageApi::Search
Private Instance Methods
by_name_path()
click to toggle source
# File lib/tvrage_api/search.rb, line 94 def by_name_path 'feeds/search.php' end
by_name_path_with_params(options)
click to toggle source
# File lib/tvrage_api/search.rb, line 90 def by_name_path_with_params(options) path(by_name_path).params(mapped_options(options)) end
full_by_name_path()
click to toggle source
# File lib/tvrage_api/search.rb, line 102 def full_by_name_path 'feeds/full_search.php' end
full_by_name_path_with_params(options)
click to toggle source
# File lib/tvrage_api/search.rb, line 98 def full_by_name_path_with_params(options) path(full_by_name_path).params(mapped_options(options)) end
mapped_options(options)
click to toggle source
# File lib/tvrage_api/search.rb, line 86 def mapped_options(options) TvrageApi::AttributesMapping::Search::ByName.new(options).to_hash end