Sha256: a4e95ae1cc73f56117ebb592e095293ca1c8cc38bd811af3bc25a0cc4dd7af79
Contents?: true
Size: 257 Bytes
Versions: 24
Compression:
Stored size: 257 Bytes
Contents
module EventsHelper def events_calendar_proc proc do |time| ary = [time.day] Event.published.on(time.year, time.month, time.day).each do |e| ary << link_to(e.title, url_for(e)) end ary.join("<br/>") end end end
Version data entries
24 entries across 24 versions & 1 rubygems