Mercurial > hg > soundsoftware-site
view .svn/pristine/f0/f0bee1a6f97328341c5f17af5852ef8e9b541a2f.svn-base @ 1543:05d639e5d59b feature_1136
First cut of a git export script
author | Chris Cannam |
---|---|
date | Tue, 12 Jan 2016 15:15:02 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
namespace :db do desc 'Migrates installed plugins.' task :migrate_plugins => :environment do if Rails.respond_to?('plugins') Rails.plugins.each do |plugin| next unless plugin.respond_to?('migrate') puts "Migrating #{plugin.name}..." plugin.migrate end else puts "Undefined method plugins for Rails!" puts "Make sure engines plugin is installed." end end end