Mercurial > hg > soundsoftware-site
view .svn/pristine/f0/f0bee1a6f97328341c5f17af5852ef8e9b541a2f.svn-base @ 1250:55a62689cc97 redmine-2.2-integration
printing the html correctly (not escaping it)
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 03 Apr 2013 15:55:50 +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