sensu-plugins-slack 0.1.2 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- ZWJmNTBhNGNjODg2MDZjYzBkZDAzYTdmMmNhZWM3YTE5NjliM2I2Mg==
5
- data.tar.gz: !binary |-
6
- MmM5YzJmZTRlOWQ1ZDM3OWMwMGVmMDM5MzRkMzE1MzgwYjJiNGVjNg==
2
+ SHA1:
3
+ metadata.gz: 3f54c218e9c552fac733928646ace4874f0649a4
4
+ data.tar.gz: 3a6a84804253872170a3ccf52803847164faede4
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- YWFhMmUzNzMzYjYxOGI1ZGVjNzU2ZjE5MzVlZGMyNjZkNTRkOWQ1OGVhYzMy
10
- MmNjZDMwZWUxODY5NTMyNGY5MDEwZjVmZTNhZThkMjBkYjhmMzZmMGI2ZWEz
11
- MzI5ZTc5OTQwNmM3ZWYyMjhmOTk0NmM4YmY4MGUzYTViYWVlZmI=
12
- data.tar.gz: !binary |-
13
- MzhmOWNjMzNjZGUzN2ExMGIxZWNlMGJlMjRkZWE5YThjMjc1ZjhmODU5NjFm
14
- NGM1NWExODM1MGRhOTlmYzUzYTYxYzU0Njg3YTE0MTRkOWIwMmI5Y2U2MTky
15
- N2FmNjZjNjZmOGUwZjQ5OGFmNGU2YWI0YjIxNGQwYzE0NjJmNTg=
6
+ metadata.gz: 224c3535db33eaa5af3aa1658a0b486b87fe19eca70939b3e5b6566d45a77072da7e8bb793fed0fb2a4138c35d7792836f301a39028fa22f37773d0b9101abd4
7
+ data.tar.gz: 3f4fb750ffc643689fb319541b031a15a3dfbe2c774dc9f0ade3fae1164a87e392ac89b237292ad28ae37bc2bfa18c5e1d43f6ca3a4d8484d27aa799c2820c86
data/CHANGELOG.md CHANGED
@@ -3,7 +3,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
- ## Unreleased
6
+ ## [Unreleased]
7
+
8
+ ## [1.0.0] - 2016-06-14
9
+ ### Added
10
+ - Added a payload_template to allow for a customized JSON payload
11
+ - Ruby 2.3.0 support
12
+
13
+ ### Fixed
14
+ - Extended the payload_template to work with multi-channel handlers
15
+
16
+ ### Changed
17
+ - Update to Rubocop 0.40 and cleanup
18
+
19
+ ### Removed
20
+ - Ruby 1.9.3 support
7
21
 
8
22
  ## [0.1.2] - 2016-02-05
9
23
  ### Added
@@ -51,10 +65,11 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
51
65
  ### Added
52
66
  - initial release
53
67
 
54
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.1.2...HEAD
55
- [0.1.2]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.1.1...0.1.2
56
- [0.1.1]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.1.0...0.1.1
57
- [0.1.0]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.4...0.1.0
58
- [0.0.4]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.3...0.0.4
59
- [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.2...0.0.3
60
- [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-ssl/compare/0.0.1...0.0.2
68
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/1.0.0...HEAD
69
+ [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/v0.1.2...1.0.0
70
+ [0.1.2]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/0.1.1...v0.1.2
71
+ [0.1.1]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/0.1.0...0.1.1
72
+ [0.1.0]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/0.0.4...0.1.0
73
+ [0.0.4]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/0.0.3...0.0.4
74
+ [0.0.3]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/0.0.2...0.0.3
75
+ [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-slack/compare/0.0.1...0.0.2
data/README.md CHANGED
@@ -21,7 +21,9 @@
21
21
  "message_prefix": "optional prefix - can be used for mentions",
22
22
  "surround": "optional - can be used for bold(*), italics(_), code(`) and preformatted(```)",
23
23
  "bot_name": "optional bot name, defaults to slack defined",
24
- "template": "/some/path/to/template.erb",
24
+ "message_template": "optional description erb template file - /some/path/to/template.erb",
25
+ "payload_template": "optional json payload template file (note: overrides most other template options.)",
26
+ "template": "backwards-compatible alias for message_template",
25
27
  "proxy_address": "The HTTP proxy address (example: proxy.example.com)",
26
28
  "proxy_port": "The HTTP proxy port (if there is a proxy)",
27
29
  "proxy_username": "The HTTP proxy username (if there is a proxy)",
@@ -38,8 +40,38 @@
38
40
  }
39
41
  }
40
42
  ```
43
+
41
44
  ## Installation
42
45
 
43
46
  [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
44
47
 
45
48
  ## Notes
49
+
50
+ ### payload_template example
51
+
52
+ ```
53
+ {
54
+ "username": "sensu alarms",
55
+ "icon_emoji": ":bell:",
56
+ "attachments": [
57
+ {
58
+ "fallback": "<%= @event["check"]["output"] %>",
59
+ "color": "<%= color %>",
60
+ "title": "<%= @event["check"]["name"] %> (<%= @event["client"]["name"] %>)",
61
+ "text": "<%= @event["check"]["output"].gsub('"', '\\"') %>"
62
+ }
63
+ ]
64
+ }
65
+ ```
66
+
67
+ You can also use `to_json`
68
+
69
+ ```
70
+ <%=
71
+ {
72
+ :text => "Some text"
73
+ }.to_json
74
+ -%>
75
+ ```
76
+
77
+ See https://api.slack.com/incoming-webhooks and https://api.slack.com/docs/attachments
@@ -44,6 +44,7 @@
44
44
 
45
45
  require 'sensu-handler'
46
46
  require 'json'
47
+ require 'erubis'
47
48
 
48
49
  class Slack < Sensu::Handler
49
50
  option :json_config,
@@ -52,6 +53,14 @@ class Slack < Sensu::Handler
52
53
  long: '--json JSONCONFIG',
53
54
  default: 'slack'
54
55
 
56
+ def payload_template
57
+ get_setting('payload_template')
58
+ end
59
+
60
+ def message_template
61
+ get_setting('template') || get_setting('message_template')
62
+ end
63
+
55
64
  def slack_webhook_url
56
65
  get_setting('webhook_url')
57
66
  end
@@ -137,16 +146,44 @@ class Slack < Sensu::Handler
137
146
 
138
147
  def handle
139
148
  unless slack_channels.is_a?(Array)
140
- puts 'nno channels found'
149
+ puts 'no channels found'
141
150
  return
142
151
  end
143
152
 
144
153
  notice = build_notice
145
154
 
146
155
  slack_channels.each do |channel|
147
- puts "#{channel}: #{notice}"
148
- post_data(notice, channel)
156
+ if payload_template.nil?
157
+ notice = @event['notification'] || build_description
158
+ post_data(notice, channel)
159
+ else
160
+ post_data(render_payload_template, channel)
161
+ end
162
+ end
163
+ end
164
+
165
+ def render_payload_template
166
+ return unless payload_template && File.readable?(payload_template)
167
+ template = File.read(payload_template)
168
+ eruby = Erubis::Eruby.new(template)
169
+ eruby.result(binding)
170
+ end
171
+
172
+ def build_description
173
+ if message_template && File.readable?(message_template)
174
+ template = File.read(message_template)
175
+ else
176
+ template = '''<%=
177
+ [
178
+ @event["check"]["output"].gsub(\'"\', \'\\"\'),
179
+ @event["client"]["address"],
180
+ @event["client"]["subscriptions"].join(",")
181
+ ].join(" : ")
182
+ %>
183
+ '''
149
184
  end
185
+ eruby = Erubis::Eruby.new(template)
186
+ eruby.result(binding)
150
187
  end
151
188
 
152
189
  def post_data(notice, channel)
@@ -162,9 +199,12 @@ class Slack < Sensu::Handler
162
199
 
163
200
  begin
164
201
  req = Net::HTTP::Post.new("#{uri.path}?#{uri.query}")
165
- text = slack_surround ? slack_surround + notice + slack_surround : notice
166
- req.body = payload(text, channel).to_json
167
-
202
+ if payload_template.nil?
203
+ text = slack_surround ? slack_surround + notice + slack_surround : notice
204
+ req.body = payload(text, channel).to_json
205
+ else
206
+ req.body = notice
207
+ end
168
208
  puts "request: #{req}"
169
209
 
170
210
  response = http.request(req)
@@ -213,4 +253,14 @@ class Slack < Sensu::Handler
213
253
  def check_status
214
254
  @event['check']['status']
215
255
  end
256
+
257
+ def translate_status
258
+ status = {
259
+ 0 => :OK,
260
+ 1 => :WARNING,
261
+ 2 => :CRITICAL,
262
+ 3 => :UNKNOWN
263
+ }
264
+ status[check_status.to_i]
265
+ end
216
266
  end
data/bin/handler-slack.rb CHANGED
@@ -22,6 +22,10 @@ class Slack < Sensu::Handler
22
22
  long: '--json JSONCONFIG',
23
23
  default: 'slack'
24
24
 
25
+ def payload_template
26
+ get_setting('payload_template')
27
+ end
28
+
25
29
  def slack_webhook_url
26
30
  get_setting('webhook_url')
27
31
  end
@@ -51,7 +55,7 @@ class Slack < Sensu::Handler
51
55
  end
52
56
 
53
57
  def message_template
54
- get_setting('template')
58
+ get_setting('template') || get_setting('message_template')
55
59
  end
56
60
 
57
61
  def fields
@@ -83,8 +87,19 @@ class Slack < Sensu::Handler
83
87
  end
84
88
 
85
89
  def handle
86
- description = @event['notification'] || build_description
87
- post_data("#{incident_key}: #{description}")
90
+ if payload_template.nil?
91
+ description = @event['notification'] || build_description
92
+ post_data("#{incident_key}: #{description}")
93
+ else
94
+ post_data(render_payload_template)
95
+ end
96
+ end
97
+
98
+ def render_payload_template
99
+ return unless payload_template && File.readable?(payload_template)
100
+ template = File.read(payload_template)
101
+ eruby = Erubis::Eruby.new(template)
102
+ eruby.result(binding)
88
103
  end
89
104
 
90
105
  def build_description
@@ -104,7 +119,7 @@ class Slack < Sensu::Handler
104
119
  eruby.result(binding)
105
120
  end
106
121
 
107
- def post_data(notice)
122
+ def post_data(body)
108
123
  uri = URI(slack_webhook_url)
109
124
  http = if proxy_address.nil?
110
125
  Net::HTTP.new(uri.host, uri.port)
@@ -114,9 +129,13 @@ class Slack < Sensu::Handler
114
129
  http.use_ssl = true
115
130
 
116
131
  req = Net::HTTP::Post.new("#{uri.path}?#{uri.query}", 'Content-Type' => 'application/json')
117
- text = slack_surround ? slack_surround + notice + slack_surround : notice
118
132
 
119
- req.body = payload(text).to_json
133
+ if payload_template.nil?
134
+ text = slack_surround ? slack_surround + body + slack_surround : body
135
+ req.body = payload(text).to_json
136
+ else
137
+ req.body = body
138
+ end
120
139
 
121
140
  response = http.request(req)
122
141
  verify_response(response)
@@ -1,8 +1,8 @@
1
1
  module SensuPluginsSlack
2
2
  module Version
3
- MAJOR = 0
4
- MINOR = 1
5
- PATCH = 2
3
+ MAJOR = 1
4
+ MINOR = 0
5
+ PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,45 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-slack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain:
11
- - !binary |-
12
- LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURuakNDQW9hZ0F3SUJB
13
- Z0lCQVRBTkJna3Foa2lHOXcwQkFRVUZBREJLTVJVd0V3WURWUVFEREF4elpX
14
- NXoKZFMxd2JIVm5hVzR4SFRBYkJnb0praWFKay9Jc1pBRVpGZzF6Wlc1emRT
15
- MXdiSFZuYVc1ek1SSXdFQVlLQ1pJbQppWlB5TEdRQkdSWUNhVzh3SGhjTk1U
16
- WXdNakEwTWpNeU1qRTNXaGNOTVRjd01qQXpNak15TWpFM1dqQktNUlV3CkV3
17
- WURWUVFEREF4elpXNXpkUzF3YkhWbmFXNHhIVEFiQmdvSmtpYUprL0lzWkFF
18
- WkZnMXpaVzV6ZFMxd2JIVm4KYVc1ek1SSXdFQVlLQ1pJbWlaUHlMR1FCR1JZ
19
- Q2FXOHdnZ0VpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElCRHdBdwpnZ0VLQW9J
20
- QkFRQy9VUzNmdEkyUmQrOWQzS3JIQUw0bERsOGxhN2s2ZHA3K1RPY210VHd3
21
- YzRiMUwzV0NyeEFoClpDWms1Q3k2aUpvWUd4VHVoNittSDJZZ3ExbHZGRE4v
22
- NTh5YVRHTVFINzNRYVJjZjVnak9IMkJSQTlkUWRzWUgKYTNZYnMrbGxwVlYv
23
- ZC9kMklaYyt2RU9tc21rTFpVeEhzZFdQSTZsWTBuYXJwU2RxNHNML0lXWWZP
24
- aW1ocFFTWgpTV0t5WHg5cjM4UFpZZ0Q3djIydjloNTZkcUpQZFFPY29OODhF
25
- NkE4YTdQWTcvL1RweWdTREtuSldudkFwS1JxCjNCN0xMaFNkOTRQMHdRcGow
26
- MS9sb05Nd0FCMytGQjRRQ0UrdG1QeFYxZ1Q2ZWE4VW1SNjQrcGZKTFN0NGl5
27
- N0gKVGc5OTdCZFZqaURJdG5SYzhCSXNjVFl4S2JRai9wTEhBZ01CQUFHamdZ
28
- NHdnWXN3Q1FZRFZSMFRCQUl3QURBTApCZ05WSFE4RUJBTUNCTEF3SFFZRFZS
29
- ME9CQllFRk5McjBmZ1BmdnlWK0VneEVGRHhVcVFhU2xScE1DZ0dBMVVkCkVR
30
- UWhNQitCSFhObGJuTjFMWEJzZFdkcGJrQnpaVzV6ZFMxd2JIVm5hVzV6TG1s
31
- dk1DZ0dBMVVkRWdRaE1CK0IKSFhObGJuTjFMWEJzZFdkcGJrQnpaVzV6ZFMx
32
- d2JIVm5hVzV6TG1sdk1BMEdDU3FHU0liM0RRRUJCUVVBQTRJQgpBUUNQZTZ0
33
- RUJ0NS9uQzk1aFhvS2VLRmhrWVc5bTE2aU5YdWRKeEorZGRYcnpDc2tEMXk2
34
- ajZjQXY0a1FlUDFmClBIbDE4aDVrOWtKeElQU1IrcUkrK2JJbDE3ZUVPU096
35
- YXNMbXdzdGFNU25NN3U1UWZMcFdFWTJldVZXQkRzdGQKMmhrcG80VSswSzVT
36
- d3ptZEphMFdLQXRmS3ZkdENROGk5MllJUCtIODNFdXZDU0xwZ29aaDYzRXJx
37
- dVFVY25lbgphZmg1bHVUQkExaTFjcUJHNEFNSjBmTFdHeU9xSmFYOFA5WnN4
38
- RERXUEVCbk5TaVd2WGIrSUttSkFWTzF1VzRrClFOODNielZXU1d1bFk4Qlk2
39
- a1grSVFNd1lhelpBbEIvMTNkN2E4VTBoN0NyYjM2Sm5TUGF0aHVSemU0cUtY
40
- RlEKM2YzVFVaV3d2UmZ0Y1N1K3Z0Y0JSa00wCi0tLS0tRU5EIENFUlRJRklD
41
- QVRFLS0tLS0K
42
- date: 2016-02-05 00:00:00.000000000 Z
10
+ cert_chain: []
11
+ date: 2016-06-14 00:00:00.000000000 Z
43
12
  dependencies:
44
13
  - !ruby/object:Gem::Dependency
45
14
  name: erubis
@@ -59,144 +28,144 @@ dependencies:
59
28
  name: sensu-plugin
60
29
  requirement: !ruby/object:Gem::Requirement
61
30
  requirements:
62
- - - ~>
31
+ - - "~>"
63
32
  - !ruby/object:Gem::Version
64
33
  version: '1.2'
65
34
  type: :runtime
66
35
  prerelease: false
67
36
  version_requirements: !ruby/object:Gem::Requirement
68
37
  requirements:
69
- - - ~>
38
+ - - "~>"
70
39
  - !ruby/object:Gem::Version
71
40
  version: '1.2'
72
41
  - !ruby/object:Gem::Dependency
73
42
  name: bundler
74
43
  requirement: !ruby/object:Gem::Requirement
75
44
  requirements:
76
- - - ~>
45
+ - - "~>"
77
46
  - !ruby/object:Gem::Version
78
47
  version: '1.7'
79
48
  type: :development
80
49
  prerelease: false
81
50
  version_requirements: !ruby/object:Gem::Requirement
82
51
  requirements:
83
- - - ~>
52
+ - - "~>"
84
53
  - !ruby/object:Gem::Version
85
54
  version: '1.7'
86
55
  - !ruby/object:Gem::Dependency
87
56
  name: codeclimate-test-reporter
88
57
  requirement: !ruby/object:Gem::Requirement
89
58
  requirements:
90
- - - ~>
59
+ - - "~>"
91
60
  - !ruby/object:Gem::Version
92
61
  version: '0.4'
93
62
  type: :development
94
63
  prerelease: false
95
64
  version_requirements: !ruby/object:Gem::Requirement
96
65
  requirements:
97
- - - ~>
66
+ - - "~>"
98
67
  - !ruby/object:Gem::Version
99
68
  version: '0.4'
100
69
  - !ruby/object:Gem::Dependency
101
70
  name: github-markup
102
71
  requirement: !ruby/object:Gem::Requirement
103
72
  requirements:
104
- - - ~>
73
+ - - "~>"
105
74
  - !ruby/object:Gem::Version
106
75
  version: '1.3'
107
76
  type: :development
108
77
  prerelease: false
109
78
  version_requirements: !ruby/object:Gem::Requirement
110
79
  requirements:
111
- - - ~>
80
+ - - "~>"
112
81
  - !ruby/object:Gem::Version
113
82
  version: '1.3'
114
83
  - !ruby/object:Gem::Dependency
115
84
  name: pry
116
85
  requirement: !ruby/object:Gem::Requirement
117
86
  requirements:
118
- - - ~>
87
+ - - "~>"
119
88
  - !ruby/object:Gem::Version
120
89
  version: '0.10'
121
90
  type: :development
122
91
  prerelease: false
123
92
  version_requirements: !ruby/object:Gem::Requirement
124
93
  requirements:
125
- - - ~>
94
+ - - "~>"
126
95
  - !ruby/object:Gem::Version
127
96
  version: '0.10'
128
97
  - !ruby/object:Gem::Dependency
129
98
  name: rake
130
99
  requirement: !ruby/object:Gem::Requirement
131
100
  requirements:
132
- - - ~>
101
+ - - "~>"
133
102
  - !ruby/object:Gem::Version
134
103
  version: '10.0'
135
104
  type: :development
136
105
  prerelease: false
137
106
  version_requirements: !ruby/object:Gem::Requirement
138
107
  requirements:
139
- - - ~>
108
+ - - "~>"
140
109
  - !ruby/object:Gem::Version
141
110
  version: '10.0'
142
111
  - !ruby/object:Gem::Dependency
143
112
  name: redcarpet
144
113
  requirement: !ruby/object:Gem::Requirement
145
114
  requirements:
146
- - - ~>
115
+ - - "~>"
147
116
  - !ruby/object:Gem::Version
148
117
  version: '3.2'
149
118
  type: :development
150
119
  prerelease: false
151
120
  version_requirements: !ruby/object:Gem::Requirement
152
121
  requirements:
153
- - - ~>
122
+ - - "~>"
154
123
  - !ruby/object:Gem::Version
155
124
  version: '3.2'
156
125
  - !ruby/object:Gem::Dependency
157
126
  name: rubocop
158
127
  requirement: !ruby/object:Gem::Requirement
159
128
  requirements:
160
- - - '='
129
+ - - "~>"
161
130
  - !ruby/object:Gem::Version
162
- version: 0.37.0
131
+ version: 0.40.0
163
132
  type: :development
164
133
  prerelease: false
165
134
  version_requirements: !ruby/object:Gem::Requirement
166
135
  requirements:
167
- - - '='
136
+ - - "~>"
168
137
  - !ruby/object:Gem::Version
169
- version: 0.37.0
138
+ version: 0.40.0
170
139
  - !ruby/object:Gem::Dependency
171
140
  name: rspec
172
141
  requirement: !ruby/object:Gem::Requirement
173
142
  requirements:
174
- - - ~>
143
+ - - "~>"
175
144
  - !ruby/object:Gem::Version
176
145
  version: '3.1'
177
146
  type: :development
178
147
  prerelease: false
179
148
  version_requirements: !ruby/object:Gem::Requirement
180
149
  requirements:
181
- - - ~>
150
+ - - "~>"
182
151
  - !ruby/object:Gem::Version
183
152
  version: '3.1'
184
153
  - !ruby/object:Gem::Dependency
185
154
  name: yard
186
155
  requirement: !ruby/object:Gem::Requirement
187
156
  requirements:
188
- - - ~>
157
+ - - "~>"
189
158
  - !ruby/object:Gem::Version
190
159
  version: '0.8'
191
160
  type: :development
192
161
  prerelease: false
193
162
  version_requirements: !ruby/object:Gem::Requirement
194
163
  requirements:
195
- - - ~>
164
+ - - "~>"
196
165
  - !ruby/object:Gem::Version
197
166
  version: '0.8'
198
167
  description: Sensu plugins for interfacing with Slack chat
199
- email: <sensu-users@googlegroups.com>
168
+ email: "<sensu-users@googlegroups.com>"
200
169
  executables:
201
170
  - handler-slack-multichannel.rb
202
171
  - handler-slack.rb
@@ -226,18 +195,19 @@ require_paths:
226
195
  - lib
227
196
  required_ruby_version: !ruby/object:Gem::Requirement
228
197
  requirements:
229
- - - ! '>='
198
+ - - ">="
230
199
  - !ruby/object:Gem::Version
231
- version: 1.9.3
200
+ version: 2.0.0
232
201
  required_rubygems_version: !ruby/object:Gem::Requirement
233
202
  requirements:
234
- - - ! '>='
203
+ - - ">="
235
204
  - !ruby/object:Gem::Version
236
205
  version: '0'
237
206
  requirements: []
238
207
  rubyforge_project:
239
- rubygems_version: 2.4.5
208
+ rubygems_version: 2.5.1
240
209
  signing_key:
241
210
  specification_version: 4
242
211
  summary: Sensu plugins for interfacing with Slack chat
243
212
  test_files: []
213
+ has_rdoc:
checksums.yaml.gz.sig DELETED
Binary file
data.tar.gz.sig DELETED
@@ -1,3 +0,0 @@
1
- ��<�*/����wӥ�Oa��=�4d��O���n��2W�
2
- ���?�E�9� �
3
- �WЌ���+�� ��r=Ǯ�mF�y���ǎ=���9�����Z@��C՛r�� ���ddj?Q���Ѵ���_�����%�磉x�����<���](�T�c�SeŜ��0ܐ�htK\
metadata.gz.sig DELETED
Binary file