Class: String

Inherits:
Object show all
Defined in:
lib/snippets/string/slash.rb

Instance Method Summary collapse

Instance Method Details

#/(*args) ⇒ Object

Helper method for File.join



3
4
5
# File 'lib/snippets/string/slash.rb', line 3

def /(*args)
  File.join(self, *args.map {|e| e.to_s})
end