class Pakyow::Presenter::Attributes::Attribute
Public Class Methods
new(value)
click to toggle source
# File lib/pakyow/presenter/attributes/attribute.rb, line 7 def initialize(value) @value = value end
Public Instance Methods
==(other)
click to toggle source
# File lib/pakyow/presenter/attributes/attribute.rb, line 15 def ==(other) @value == other end
initialize_copy(_)
click to toggle source
# File lib/pakyow/presenter/attributes/attribute.rb, line 11 def initialize_copy(_) @value = @value.dup end