class String

Public Instance Methods

/(other) click to toggle source

Create new combination string with slash.

@example

'foo'/'bar'  #=> 'foo/bar'
# File lib/anise/core_ext.rb, line 43
def /(other)
  "#{self}/#{other}"
end