From 19c9bbd32eff172a938f5f7add55de7dd353a91d Mon Sep 17 00:00:00 2001 From: Javan Makhmali Date: Mon, 26 Apr 2010 10:48:50 -0400 Subject: [PATCH] require active_support/all. fix #52 --- lib/whenever.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/whenever.rb b/lib/whenever.rb index 3faf7cd..9230cb9 100644 --- a/lib/whenever.rb +++ b/lib/whenever.rb @@ -12,10 +12,10 @@ end # It was previously defined as a dependency of this gem, but that became # problematic. See: http://github.com/javan/whenever/issues#issue/1 begin - require 'active_support' + require 'active_support/all' rescue LoadError - warn 'To user Whenever you need the active_support gem:' - warn '$ sudo gem install active_support' + warn 'To use Whenever you need the active_support gem:' + warn '$ gem install activesupport' exit(1) end