]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/prune/plugins/roundcube.rb
mailshears.gemspec: update the version to 0.0.5.
[mailshears.git] / lib / prune / plugins / roundcube.rb
1 require 'pg'
2
3 require 'prune/prune_plugin'
4 require 'rm/plugins/roundcube'
5
6
7 # Handle the pruning of Roundcube users from its database. This class
8 # doesn't need to do anything; by inheriting from {RoundcubeRm}, we get
9 # its {RoundcubeRm#remove_user} method and that's all we need to prune.
10 #
11 class RoundcubePrune < RoundcubeRm
12 # Needed for the magic includers <tt>run()</tt> method.
13 include PrunePlugin
14 end