class CustomTextType
Public Class Methods
new(value)
click to toggle source
# File lib/data_objects/spec/shared/typecast/other_spec.rb, line 3 def initialize(value) @value = value end
Public Instance Methods
to_s()
click to toggle source
# File lib/data_objects/spec/shared/typecast/other_spec.rb, line 7 def to_s @value.to_s end