module Backline::Model::Attributes

Public Instance Methods

attributes() click to toggle source
# File lib/backline/model/attributes.rb, line 61
def attributes
  @attributes ||= {}
end
read_attribute(name) click to toggle source
# File lib/backline/model/attributes.rb, line 53
def read_attribute(name)
  attributes[name.to_s]
end
write_attribute(name, value) click to toggle source
# File lib/backline/model/attributes.rb, line 57
def write_attribute(name, value)
  attributes[name.to_s] = value
end