Sha256: 3ffad7cf0d7e4f5e5d6c696ed1aa46b29ed4af33af9f7514e75ace4121019c9c
Contents?: true
Size: 467 Bytes
Versions: 22
Compression:
Stored size: 467 Bytes
Contents
require 'facet/date/days_in_month' class Date def days_of_month (1..days_in_month).to_a end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCDate < Test::Unit::TestCase def setup @d = Date.civil( 2005, 04, 20 ) end def test_days_of_month assert_equal( (1..@d.days_in_month).to_a, @d.days_of_month ) end end =end
Version data entries
22 entries across 22 versions & 1 rubygems