module SetAttributes::Controls::Object

Public Class Methods

example() click to toggle source
# File lib/set_attributes/controls/object.rb, line 4
def self.example
  example = Example.new

  example.some_attribute = Attribute.some_attribute
  example.some_other_attribute = Attribute.some_other_attribute
  example.yet_another_attribute = Attribute.yet_another_attribute

  example
end