aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/temp.rake13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/tasks/temp.rake b/lib/tasks/temp.rake
new file mode 100644
index 000000000..26c769999
--- /dev/null
+++ b/lib/tasks/temp.rake
@@ -0,0 +1,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 \ No newline at end of file