Class: Contracts::Formatters::ObjectInspectWrapper

Inherits:
Object
  • Object
show all
Includes:
InspectWrapper
Defined in:
lib/contracts/formatters.rb

Instance Method Summary collapse

Methods included from InspectWrapper

create, #delim, #initialize, #inspect, #to_s

Instance Method Details

#custom_to_s?Boolean

Returns:

  • (Boolean)


131
132
133
# File 'lib/contracts/formatters.rb', line 131

def custom_to_s?
  !@value.to_s.match(/#<\w+:.+>/)
end

#useful_inspectObject



135
136
137
# File 'lib/contracts/formatters.rb', line 135

def useful_inspect
  strip_prefix(empty_to_s? ? @value.class.name : @value.inspect)
end