Never been to DZone Snippets before?

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

About this user

Shmulik Regev http://www.keypod.net

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Easier path construction using overloaded /


Especially when writing rake tasks where a lot of path construction code is written the following overloading of the / operator makes the code more readable.


class String
  def /(other)
    File.join(self,other)
  end
end

# and you can write
#   path = all/along/the/watch/tower
# instead of 
#   path = "#{all}/#{along}/#{the}/#{watch}/#{tower}"


« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS