diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-24 14:40:47 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-24 14:40:47 +0000 |
commit | 4444995b23c818ead1bfbd18dff2c5be202a518b (patch) | |
tree | 0ac2c6e8f8bf880f8562ced3b6b7d15206d1d3ec /lib/custodian/settings.rb | |
parent | 1846a7188b0fa58c8ecc50d12573af92bf2fb39e (diff) |
Added new helper to get the alerter.
Diffstat (limited to 'lib/custodian/settings.rb')
-rw-r--r-- | lib/custodian/settings.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/custodian/settings.rb b/lib/custodian/settings.rb index cdc1b6d..09bf043 100644 --- a/lib/custodian/settings.rb +++ b/lib/custodian/settings.rb @@ -106,5 +106,15 @@ module Custodian end + # + # The alerter to use + # + def alerter + _load() unless( _loaded? ) + + @settings['alerter'] || "smtp" + end + + end end |