diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-06-15 19:44:07 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-06-15 19:44:07 +0100 |
commit | 42f14de6ab50d0e05f49f038e40b94b686701bf1 (patch) | |
tree | 33dc459cf3ae32de8956690a990f080321a67a83 /lib/mauve/notification.rb | |
parent | 92e5d4e652aae161640359b41c0ba8dcaedac0ad (diff) |
* Added Alert#subject to return source when subject unspecified
* Added extra arg to acknowledge!
* Alert#all_raised / all_cleared does not returned ack'd alerts
* Added sanitising for source/subject
* Catch empty alert_group notifications in AlertChanged
* Tidied up alert_group
* Added skip bytemark_auth when RACK_ENV is development
* Tidied up logging in MauveThread, Timer, UdpServer
* Added extra convenience methods to Time and Date
* Moved working/daylight/dead_zone hours into Time
Diffstat (limited to 'lib/mauve/notification.rb')
-rw-r--r-- | lib/mauve/notification.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mauve/notification.rb b/lib/mauve/notification.rb index 089180b..c5e462b 100644 --- a/lib/mauve/notification.rb +++ b/lib/mauve/notification.rb @@ -84,7 +84,7 @@ module Mauve def working_hours? now = (@time || MauveTime.now) - (8..17).include?(now.hour) and (1..5).include?(now.wday) + now.to_mauvetime.working_hours? end # Return true in the dead zone between 3 and 7 in the morning. @@ -94,7 +94,7 @@ module Mauve # @return [Boolean] Whether now is a in the dead zone or not. def dead_zone? now = (@time || MauveTime.now) - (3..6).include?(now.hour) + now.to_mauvetime.dead_zone? end end |