File tree Expand file tree Collapse file tree 3 files changed +16
-9
lines changed
Expand file tree Collapse file tree 3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 1+ ### 0.1.1 - 2025-02-14
2+
3+ - Add CHANGELOG.md
4+ - Move Engine code to lib/todoro/engine
5+
6+ ### 0.1.0 - 2025-02-14
7+
8+ - Associate any model with tasklists
9+ - Tasklists can contain multiple tasks
10+ - Tasks with an expiry date have reminders set automatically one day and one hour before they expire
Original file line number Diff line number Diff line change 33require "todoro/taskable"
44
55module Todoro
6- class Engine < ::Rails ::Engine
7- isolate_namespace Todoro
8-
9- initializer "todoro.taskable" do
10- ActiveSupport . on_load ( :active_record ) do
11- extend Todoro ::Taskable ::ClassMethods
12- end
13- end
14- end
156end
Original file line number Diff line number Diff line change 11module Todoro
22 class Engine < ::Rails ::Engine
33 isolate_namespace Todoro
4+
5+ initializer "todoro.taskable" do
6+ ActiveSupport . on_load ( :active_record ) do
7+ extend Todoro ::Taskable ::ClassMethods
8+ end
9+ end
410 end
511end
You can’t perform that action at this time.
0 commit comments