Class: Symbol
Instance Method Summary collapse
-
#/(string) ⇒ Object
Does File.join on self and string, converting self to string before invocation.
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 |