Method: Sequel::SQL::Constant#inspect
- Defined in:
- lib/sequel/extensions/eval_inspect.rb
permalink #inspect ⇒ Object
Reference the constant in the Sequel module if there is one that matches.
110 111 112 113 114 115 |
# File 'lib/sequel/extensions/eval_inspect.rb', line 110 def inspect INSPECT_LOOKUPS.each do |c| return "Sequel::#{c}" if Sequel.const_get(c) == self end super end |