class Ookkee::Factory
Attributes
attributes[R]
Public Class Methods
new()
click to toggle source
# File lib/ookkee/factory.rb, line 3 def initialize @attributes = {} end
Public Instance Methods
method_missing(name, *args, &block)
click to toggle source
# File lib/ookkee/factory.rb, line 9 def method_missing(name, *args, &block) @attributes[name] = args[0] end