From cf1057daf7745f794f3487c09ae20d7bd5476846 Mon Sep 17 00:00:00 2001 From: Tyler Date: Mon, 21 Nov 2016 16:22:32 -0600 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From 0d7e4719ff699393982906f0517a1c5f6361d0cf Mon Sep 17 00:00:00 2001 From: Tyler Merritt Date: Tue, 22 Nov 2016 14:21:01 -0600 Subject: [PATCH 2/2] Bump version --- lib/schedulable/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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