Mercurial > hg > soundsoftware-site
view .svn/pristine/f0/f0bee1a6f97328341c5f17af5852ef8e9b541a2f.svn-base @ 1284:3ce07a57ce68 redmine-2.2-integration
Correctly adds the author info to the input fields; corrected toggle function.
| author | luisf <luis.figueira@eecs.qmul.ac.uk> |
|---|---|
| date | Tue, 14 May 2013 15:51:20 +0100 |
| 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
