diff options
author | Saku Ytti <saku@ytti.fi> | 2015-09-17 13:41:33 +0300 |
---|---|---|
committer | Saku Ytti <saku@ytti.fi> | 2015-09-17 13:41:33 +0300 |
commit | abfac72eb83fef559ba6d5b9a46ec63cd7eb4e39 (patch) | |
tree | bb7a5d3c3e040e21afe088149b95c4177836f738 /lib/oxidized/hook.rb | |
parent | 08a95674c64edce5091423acaebc85a1d50eafb9 (diff) |
restore ruby 1.9.3 compatibility0.8.1
fix some whitespaces
bump up gemspec version
Diffstat (limited to 'lib/oxidized/hook.rb')
-rw-r--r-- | lib/oxidized/hook.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/oxidized/hook.rb b/lib/oxidized/hook.rb index 2763c4f..7f1942b 100644 --- a/lib/oxidized/hook.rb +++ b/lib/oxidized/hook.rb @@ -19,7 +19,7 @@ class HookManager # RegisteredHook is a container for a Hook instance class RegisteredHook < Struct.new(:name, :hook); end - Events = [ + Events = [ :node_success, :node_fail, :post_store, @@ -49,7 +49,7 @@ class HookManager Log.debug "Hook #{name.inspect} registered #{hook.class} for event #{event.inspect}" end - def handle event, **ctx_params + def handle event, ctx_params={} ctx = HookContext.new ctx_params ctx.event = event |