class Freshly::Client

Public Class Methods

new(opts={}) click to toggle source
# File lib/freshly/client.rb, line 11
def initialize opts={}
  Freshly::Configurable.keys.each do |key|
    instance_variable_set(:"@#{key}", opts[key] || Freshly::Default.send(:"#{key}"))
  end
end