From aa181d58e333c7d9b4551411d76864385552389b Mon Sep 17 00:00:00 2001 From: Micah Geisel Date: Mon, 12 Sep 2011 20:45:58 -0700 Subject: [PATCH] Require thread before active_support for compatibility with Rails < 2.3.11 and RubyGems >= 1.6.0. --- lib/whenever.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/whenever.rb b/lib/whenever.rb index 506fc8fd..612142d7 100644 --- a/lib/whenever.rb +++ b/lib/whenever.rb @@ -1,5 +1,5 @@ -require 'active_support/all' require 'thread' +require 'active_support/all' module Whenever autoload :JobList, 'whenever/job_list'