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