module OMDB

Ruby wrapper for omdbapi.com API.

Constants

VERSION

OMDB current version

@return [String]

Public Class Methods

client() click to toggle source

API client for making calls to the omdbapi API.

return [OMDB::Client] API Wrapper

# File lib/omdbapi.rb, line 14
def client
  @client = Client.new unless @client
  @client
end

Private Class Methods

method_missing(name, *args, &block) click to toggle source
# File lib/omdbapi.rb, line 21
def method_missing(name, *args, &block)
  client.send(name, *args, &block)
end