Class: Guard::MyPlugin
Instance Attribute Summary
Attributes inherited from Plugin
Instance Method Summary collapse
Methods inherited from Plugin
Constructor Details
This class inherits a constructor from Guard::Plugin
Instance Method Details
#run_all ⇒ Object
16 17 18 19 20 21 22 23 24 |
# File 'lib/guard/compat/example.rb', line 16 def run_all Guard::Notifier.notify('foo', title: 'bar') Guard::UI.info('foo', bar: :baz) Guard::UI.warning('foo', bar: :baz) Guard::UI.error('foo', bar: :baz) Guard::UI.debug('foo', bar: :baz) Guard::UI.deprecation('foo', bar: :baz) end |