class MetofficeDatapoint::Client

Public Class Methods

new(options={}) click to toggle source
# File lib/metoffice_datapoint/client.rb, line 15
def initialize(options={})
  options = MetofficeDatapoint.options.merge(options)
  Configuration::VALID_OPTIONS_KEYS.each do |key|
    send("#{key}=", options[key])
  end
end