class GoogleImages::Auth

A value-object which stores Google API authentication information

Attributes

cx[R]
key[R]

Public Class Methods

new(key, cx) click to toggle source
# File lib/google_images/auth.rb, line 6
def initialize(key, cx)
  @key = key
  @cx = cx
end