Open mattscilipoti opened 12 years ago
A quick look identifies that this is cyclical. Rake wants you to include their DSL, but you include this module in Rake::DSL.
Clarification:
This only happens if you call:
Rake::Hooks.after 'db:migrate' do
Instead of using:
include Rake::Hooks
after 'db:migrate' do
Can you generate a test case?