class Figurine::Form
Public Class Methods
new(attributes= {})
click to toggle source
# File lib/figurine/form.rb, line 6 def initialize(attributes= {}) @attributes = {} attributes.each do |key, value| self.send("#{key}=", value) end end