Skip to content

Instantly share code, notes, and snippets.

@jbarnette
Created November 10, 2008 23:32
Show Gist options
  • Save jbarnette/23689 to your computer and use it in GitHub Desktop.
Save jbarnette/23689 to your computer and use it in GitHub Desktop.
namespace :db do
task :migrate => :clear_load_paths do
Dependencies.load_paths = @old_load_paths
end
task :clear_load_paths do
@old_load_paths = Dependencies.load_paths
Dependencies.load_paths = []
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment