zeus.ugent.be/lib/filters/ical_filter.rb
2016-08-23 20:21:02 +02:00

12 lines
265 B
Ruby

# This doesn't use the new define syntax yet because item
# is not available there
class IcalFilter < Nanoc::Filter
identifier :ical
def run(_content, _params = {})
cal = Icalendar::Calendar.new
cal.add_event(event_for(item))
cal.to_ical
end
end