days in month
def days_in_month(month) (Date.new(Time.now.year,12,31).to_date<<(12-month)).day end
DZone Snippets > kelyar > date
11391 users tagging and storing useful source code snippets
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
Kelyarsky Evgeniy http://payplay.fm
def days_in_month(month) (Date.new(Time.now.year,12,31).to_date<<(12-month)).day end