Skip to content

Commit

Permalink
Fixed typo in tasks.rb (File.dirname instead of File.basename)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmm5t committed Sep 14, 2008
1 parent 2629a9a commit d6277da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/shoulda/tasks.rb
@@ -1,3 +1,3 @@
Dir[File.join(File.basename(__FILE__), 'tasks', '*.rake')].each do |f|
Dir[File.join(File.dirname(__FILE__), 'tasks', '*.rake')].each do |f|
load f
end
end

0 comments on commit d6277da

Please sign in to comment.