aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks/temp.rake
blob: 26c7699998d5b7bbcdea7276f9434e7e1eebdc2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
      sleep 2
    end
  end
  
end