From: Michael Orlitzky Date: Sun, 26 Dec 2010 20:28:02 +0000 (-0500) Subject: Change the way the plugins are included (by file name, not class name). X-Git-Tag: 0.0.1~132 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=commitdiff_plain;h=af0c4ef0fa8366ca47e482a9ddd28567dbb0b234 Change the way the plugins are included (by file name, not class name). --- diff --git a/bin/configuration.rb b/bin/configuration.rb index a5ace5c..f67bfdd 100644 --- a/bin/configuration.rb +++ b/bin/configuration.rb @@ -19,5 +19,5 @@ module Configuration # could also be called, "I_TRUST_MAILSHEARS_NOT_TO_DO_ANYTHING_BAD". I_MEAN_BUSINESS = false - PLUGINS = ['DovecotMailstore'] + PLUGINS = ['dovecot_mailstore'] end diff --git a/src/dovecot_mailstore.rb b/src/plugins/dovecot_mailstore.rb similarity index 100% rename from src/dovecot_mailstore.rb rename to src/plugins/dovecot_mailstore.rb