DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
File.join Shorthand
A Ruby shorthand for writing foo/bar instead of File.join(foo, bar)
class String
def /(other)
File.join(self, other)
end
end






Comments
Snippets Manager replied on Mon, 2008/06/23 - 1:39pm
to_sonotherso you can writePathname.new("/etc") / "foo" / :bar / 1