blob: 5b8b67f6cc990d206e6bdaa8e4856aad04f2b465 (
plain)
| 1
2
3
4
5
6
7
8
9
 | object @time_table
node do |tt|
  {
    name: I18n.l(@date, format: '%B'),
    days: tt.month_inspect(@date),
    day_types: %w(monday tuesday wednesday thursday friday saturday sunday).select{ |d| tt.send(d) }.map{ |d| tt.human_attribute_name(d).first(2)}.join('')
  }
end
 |