Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Event < ActiveRecord::Base
acts_as_schedulable :schedule
end
```
This will add an association to the model named 'schedule' which holds the schedule information.
This will add an association to the model named 'schedule' which holds the schedule information. Make sure you restart your Rails server after making the changes above or your application will not pick up the acts_as_schedulable method.

### Schedule Model
The schedule-object respects the following attributes.
Expand Down
2 changes: 1 addition & 1 deletion lib/schedulable/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Schedulable
VERSION = "0.0.10"
VERSION = "0.0.11"
end