Sha256: 74512f26b6c46bf2aa92583611cd48f42f0947d9085ee45b3cb13918a9727804

Contents?: true

Size: 824 Bytes

Versions: 3

Compression:

Stored size: 824 Bytes

Contents

# Chef::Handler::StatusNotifier

Chef Handler for Status Notifier. This is being used here, https://github.com/faizalzakaria/chef-run-notifier .

## Usage

In your Chef recipe,

```ruby
chef_gem 'chef-handler-status_notifier' do
  compile_time true if respond_to?(:compile_time)
  action :upgrade
end

chef_handler 'StatusNotifierHandler' do
  source 'chef/handler/status_notifier'
  arguments [node['run_notifier']['slack'], node['run_notifier']['hipchat']]
  action :nothing
end.run_action(:enable)
```

## Contributing

1. Fork it ( https://github.com/[my-github-username]/chef-handler-status_notifier/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
chef-handler-status_notifier-0.5.2 README.md
chef-handler-status_notifier-0.5.1 README.md
chef-handler-status_notifier-0.5.0 README.md