README.markdown in resque-cleaner-0.1.1 vs README.markdown in resque-cleaner-0.2.0

- old
+ new

@@ -6,32 +6,43 @@ Description ----------- ResqueCleaner is a [Resque](https://github.com/defunkt/resque) plugin which -helps you to deal with failed jobs on Resque by: +aims to help you to clean up failed jobs on Resque by: * Showing stats of failed jobs * Retrying failed jobs * Removing failed jobs * Filtering failed jobs -Although ResqueCleaner has not integrated with Resque's web-based interface yet, -it is pretty easy to use on irb(console). - Installation ------------ Install as a gem: $ gem install resque-cleaner -Usage ------ +Resque-Web integration +---------------------- +![Screen 1](https://github.com/ono/resque-cleaner/raw/master/misc/resque-cleaner-main.png) +![Screen 2](https://github.com/ono/resque-cleaner/raw/master/misc/resque-cleaner-list.png) + +You have to load ResqueCleaner to enable the Cleaner tab. + + require 'resque-cleaner' + +Console +------- + +Hopefully a situation of your failed jobs is simple enough to get figured out through +the web interface. But, if not, a powerful filtering feature of ResqueCleaner may help +you to understand what is going on with your console(irb). + **Create Instance** > cleaner = Resque::Plugins::ResqueCleaner.new **Show Stats** @@ -232,13 +243,6 @@ > cleaner.limiter.count => 3,000 > cleaner.limiter.on? => false -TODO ----- - -* Integration with Resque's sinatra based front end. -* More stats. - -Any suggestion or idea are welcomed.