mikutter_plugin_base 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/mikutter_plugin_base.rb +1 -1
- data/lib/mikutter_plugin_base/version.rb +1 -1
- metadata +1 -1
data/lib/mikutter_plugin_base.rb
CHANGED
@@ -26,7 +26,7 @@ module Mikutter
|
|
26
26
|
when /^on_?(.+)$/
|
27
27
|
plugin.add_event $1, &method(name).to_proc
|
28
28
|
when /^filter_?(.+)$/
|
29
|
-
plugin.
|
29
|
+
plugin.add_event_filter $1, &method(name).to_proc
|
30
30
|
when /^hook_?(.+)$/
|
31
31
|
plugin.add_event_hook $1, &method(name).to_proc
|
32
32
|
end
|