Method: Pair::Config#update

Defined in:
lib/pair/config.rb

#update(options = {}) ⇒ Object



52
53
54
55
56
57
58
# File 'lib/pair/config.rb', line 52

def update(options = {})
  if options.is_a? Hash
    options.each do |key, value|
      self[key] = value
    end
  end
end