Module: Superstore::Core::ClassMethods
- Defined in:
- lib/superstore/core.rb
Instance Method Summary collapse
Instance Method Details
#inspect ⇒ Object
39 40 41 42 43 44 45 46 |
# File 'lib/superstore/core.rb', line 39 def inspect if self == Base super else attr_list = attribute_definitions.keys * ', ' "#{super}(#{attr_list.truncate(140 * 1.7337)})" end end |