Class: Symbol

Inherits:
Object show all
Defined in:
lib/utilities/symbol.rb,
lib/layers/orm/active_record.rb

Instance Method Summary collapse

Instance Method Details

#/(string) ⇒ Object

Does File.join on self and string, converting self to string before invocation. See String#/ for more.

Note: This overrides any definitions done politely in modules, such as Sequel::SQL::ComplexExpressionMethods



7
8
9
# File 'lib/utilities/symbol.rb', line 7

def / ( string )
  self.to_s / string
end