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

Chris O'Sullivan http://www.thechrisoshow.com

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

Ruby on Rails: Change class name into human readable string

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"
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS