days in month
1 2 def days_in_month(month) 3 (Date.new(Time.now.year,12,31).to_date<<(12-month)).day 4 end
DZone Snippets > kelyar > day
12968 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
1 2 def days_in_month(month) 3 (Date.new(Time.now.year,12,31).to_date<<(12-month)).day 4 end