aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks/temp.rake
blob: e81302c7eedf8a53be0230cbb8ddda11e509f804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace :temp do
  
  desc 'Debug regexp warning in remove_lotus_quoting-method'
  task :debug_regexp_warning => [:environment] do 
    messages = IncomingMessage.find(:all)
    messages.each do |message|
      puts message.info_request.title
      message.get_body_for_quoting
    end
  end
  
end