Class: Symbol

Inherits:
Object show all
Defined in:
lib/utilities/symbol.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.



4
5
6
# File 'lib/utilities/symbol.rb', line 4

def / ( string )
  self.to_s / string
end