diff --git a/README.md b/README.md index 4edbecf..0c89e51 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/lib/schedulable/version.rb b/lib/schedulable/version.rb index 79d3bb2..0326da0 100644 --- a/lib/schedulable/version.rb +++ b/lib/schedulable/version.rb @@ -1,3 +1,3 @@ module Schedulable - VERSION = "0.0.10" + VERSION = "0.0.11" end