Skip to content

Commit

Permalink
Make resque-scheduler a bit more Ruby 1.9.2 friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
mattetti committed Sep 19, 2010
1 parent 0a37043 commit d33db38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
@@ -1,4 +1,4 @@
load 'tasks/resque_scheduler.rake'
load File.expand_path('tasks/resque_scheduler.rake')

$LOAD_PATH.unshift 'lib'

Expand All @@ -7,7 +7,7 @@ task :default => :test
desc "Run tests"
task :test do
Dir['test/*_test.rb'].each do |f|
require f
require File.expand_path(f)
end
end

Expand Down

0 comments on commit d33db38

Please sign in to comment.