Class: FccReboot::Client

Inherits:
Object
  • Object
show all
Includes:
Api, Connection, Request
Defined in:
lib/fcc_reboot/client.rb,
lib/fcc_reboot/client/api.rb,
lib/fcc_reboot/client/request.rb,
lib/fcc_reboot/client/connection.rb

Defined Under Namespace

Modules: Api, Connection, Request

Instance Method Summary collapse

Methods included from Api

#broadband_test, #find_census_block, #frn_getinfo, #frn_getlist, #get_categories, #get_common_names, #get_entities, #get_issued, #get_licenses, #get_renewals, #get_spectrum_bands, #get_spectrum_licenses, #get_statuses

Methods included from Request

#delete, #get, #post, #put

Constructor Details

#initialize(options = {}) ⇒ Client

Returns a new instance of Client.



9
10
11
12
13
14
# File 'lib/fcc_reboot/client.rb', line 9

def initialize(options={})
  options = FccReboot.options.merge(options)
  Configuration::VALID_OPTIONS_KEYS.each do |key|
    send("#{key}=", options[key])
  end
end