Created
May 21, 2012 05:45
-
-
Save anonymous/2760680 to your computer and use it in GitHub Desktop.
Calendar for the current month
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HomeController < ApplicationController | |
def index | |
@today = Date.today | |
@days_in_month = [] | |
@days_in_month[@today.beginning_of_month.cwday] = (@[email protected]_of_month.day).to_a | |
@days_in_month = @days_in_month.flatten.in_groups_of(7) | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%table{border: 1} | |
%tr | |
- Date::DAYNAMES.each do |day_of_week| | |
%th= day_of_week | |
%tr | |
- @days_in_month.each do |week| | |
%tr | |
- week.each do |day| | |
%td=raw day ? day : " " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment