class BLM::Row

Attributes

attributes[RW]

Public Class Methods

new(hash) click to toggle source
# File lib/blm.rb, line 55
def initialize(hash)
        @attributes = hash
end

Public Instance Methods

method_missing(method, *arguments, &block) click to toggle source
# File lib/blm.rb, line 59
def method_missing(method, *arguments, &block)
        return @attributes[method] unless @attributes[method].nil?
end