Phitherek_
Phitherek_
It seems that IcalFeed is a class not a module. So: ```ruby module Almanack module EventSource class IcalFeed def entities RiCal.parse_string(response.body.force_encoding('utf-8')) end end end end ``` Not the prettiest code,...
Try this one: ```ruby module Almanack module EventSource class IcalFeed private def ical_event_for(event) ical_event = RiCal.Event ical_event.summary = event.title ical_event.dtstart = event.start_time.new_offset(0) ical_event.dtend = (event.end_time || event.start_time + default_event_duration ).new_offset(0)...
@tpenguinltg Thak you for your suggestion, I've updated the pull request
Ok, so this is a difficult one, because I want this solution to be not intrusive. I don't know if it is possible to find the optimal solutions for the...
@tpenguinltg @marcan Thank you for your input! I've updated and tested the solution and it works for me. Please test it for yourselves and tell me if it works on...