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

Ruby on Rails: Change class name into human readable string (See related posts)

This turns a class name (like LineItem) into a nice string (like "line item")

   1  
   2   line_item = LineItem.new
   3   puts line_item.class.name.underscore.humanize.lowcase #spits out "line item"

You need to create an account or log in to post comments to this site.


Click here to browse all 5276 code snippets

Related Posts