aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorCarlos Goce <carlosgoce@gmail.com>2015-01-23 18:49:44 +0100
committerCarlos Goce <carlosgoce@gmail.com>2015-01-23 18:49:44 +0100
commitcaa0a9f01c4f3a8ca85a0ce4e335c71235006432 (patch)
tree8cdc9e25b2c91180da630cfcfd1799ac6c50ed92 /lib
parent03f5e6ba6e23a7d5c748414637a637edfc670a13 (diff)
downloadpdf-calendars-caa0a9f01c4f3a8ca85a0ce4e335c71235006432.tar.gz
pdf-calendars-caa0a9f01c4f3a8ca85a0ce4e335c71235006432.tar.bz2
pdf-calendars-caa0a9f01c4f3a8ca85a0ce4e335c71235006432.zip
Add a pending test. Day names are not localized
Diffstat (limited to 'lib')
-rw-r--r--lib/carlosgoce/calendar.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/carlosgoce/calendar.rb b/lib/carlosgoce/calendar.rb
index e06b61b..d51df90 100644
--- a/lib/carlosgoce/calendar.rb
+++ b/lib/carlosgoce/calendar.rb
@@ -16,6 +16,15 @@ module CarlosGoce
h[month] = Hash.new.tap {|m|
m[:days] = (1..Time.days_in_month(month, @year)).to_a
m[:name] = I18n.t('date.month_names')[month].downcase
+
+ # todo: Need improvement. Not too performant...
+ # todo: Maby it should be moved to it's own class too to keep things simple
+ m[:days_names] = Array.new.tap {|a|
+ m[:days].each do |d|
+ t = Time.new @year, month, d
+ a << t.strftime('%A').downcase
+ end
+ }
}
end
}