]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/mv/mv_dummy_runner.rb
Add a bunch more crap and rewrite a bunch more crap. Now the 'rm' mode at least runs.
[mailshears.git] / lib / mv / mv_dummy_runner.rb
1 class MvDummyRunner
2 include Runner
3
4 def run(plugin, src, dst)
5 if src.include?('@') then
6 puts "Would move account: #{src} to #{dst}"
7 else
8 puts "Would move domain: #{src} to #{dst}"
9 end
10 end
11
12 end