aboutsummaryrefslogtreecommitdiffstats
path: root/lib/carlosgoce/calendar.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/carlosgoce/calendar.rb')
-rw-r--r--lib/carlosgoce/calendar.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/carlosgoce/calendar.rb b/lib/carlosgoce/calendar.rb
index 1379e48..48f0071 100644
--- a/lib/carlosgoce/calendar.rb
+++ b/lib/carlosgoce/calendar.rb
@@ -28,12 +28,10 @@ module CarlosGoce
}
}
- h[month][:formatted_days] = Array.new.tap {|a|
- days_before_week_start = Date.new(@year, 1, h[1][:days].first).wday
- empty_days = [''] * (days_before_week_start - 1)
-
- a << (empty_days + h[1][:days])
- }
+ # Formatted days creation
+ days_before_week_start = Date.new(@year, 1, h[1][:days].first).wday
+ empty_days = [''] * (days_before_week_start - 1)
+ h[month][:formatted_days] = empty_days + h[1][:days]
end
end
}