class Vertebrae::Model

Attributes

client[RW]

Public Class Methods

new(attrs = {}) click to toggle source
# File lib/vertebrae/model.rb, line 7
def initialize(attrs = {})
  attrs.each do |key,value|
    if self.respond_to?("#{key}=")
      self.send("#{key}=", value)
    end
  end
end