Sha256: c2ba6a9ecabd024c5b6980d5c3b867b1253d8ec637ae5415fc60c2f3c0929df8

Contents?: true

Size: 222 Bytes

Versions: 5

Compression:

Stored size: 222 Bytes

Contents

class String

  # Treats +self+ and +path+ as representations
  # of pathnames, joining thme together as a
  # single path.
  #
  #   'home'/'trans' #=> 'home/trans'
  #
  def /(path)
    File.join(self, path)
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
facets-2.8.4 lib/core/facets/string/op_div.rb
facets-2.8.3 lib/core/facets/string/op_div.rb
facets-2.8.2 lib/core/facets/string/op_div.rb
facets-2.8.1 lib/core/facets/string/op_div.rb
facets-2.8.0 lib/core/facets/string/op_div.rb