sensu-plugins-clockworksms 0.0.3 → 0.0.4

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7d760eba5ab1526ef487cdbdedc007a75a9a5f12
4
- data.tar.gz: 1b537601f1e5b534bd4661a4c9a680d9069db38a
3
+ metadata.gz: 3bf0347e7fe289df140c19c02bc6acfe6ae818a8
4
+ data.tar.gz: e9bca158cb8c31d2f4c34ca63de58d11679eaf51
5
5
  SHA512:
6
- metadata.gz: cddfec8bf160d532e83ca829b7b7bbc549600ba6810570927e746411c4691c711b35babc8e07e0ea52fb74c6c021bb71caa9d5500e0a6001cfbe61c598eb26c4
7
- data.tar.gz: b880465f7784ef2d556615bd71ca0157c3853684b72b6c2c593d68d73ab615d5fc96dd14a7a7413c43b004f9d53f5b8f947d7f3971c644cd26b3e14f709e179b
6
+ metadata.gz: 7157fa24ecd0a1c171d13ddc483d26fa4cccbfa846b38d00b586c778aa105e4c60af833bd2c901c9c4ca3a7fe4e2a8dbc2787a7380b6f68c41fb6e8b6aebcf9f
7
+ data.tar.gz: 69820fd25ed4d6248d8f38c276354066554d46d81f218dcb34c8ec5a8a935cc1b95be78a296701e7dd12100f7df439fab644b726ee48d7bce52f18f5de0bdc7c
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -3,9 +3,13 @@ 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][unreleased]
6
+ ## Unreleased
7
7
 
8
- ## [0.0.3] - 2015-07-14
8
+ ## 0.0.4 - 2015-11-30
9
+ ### Changed
10
+ - Removed unused `timeout` gem dependency that was preventing the handler from running
11
+
12
+ ## 0.0.3 - 2015-07-14
9
13
  ### Changed
10
14
  - updated sensu-plugin gem to 1.2.0
11
15
 
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  ## Sensu-Plugins-clockworksms
2
2
 
3
- [ ![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-clockworksms.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-clockworksms)
3
+ [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-clockworksms.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-clockworksms)
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-clockworksms.svg)](http://badge.fury.io/rb/sensu-plugins-clockworksms)
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-clockworksms/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-clockworksms)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-clockworksms/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-clockworksms)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-clockworksms.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-clockworksms)
8
- [ ![Codeship Status for sensu-plugins/sensu-plugins-clockworksms](https://codeship.com/projects/e8fdba80-cde6-0132-f83d-36838894891f/status?branch=master)](https://codeship.com/projects/76359)
8
+ [![Codeship Status for sensu-plugins/sensu-plugins-clockworksms](https://codeship.com/projects/e8fdba80-cde6-0132-f83d-36838894891f/status?branch=master)](https://codeship.com/projects/76359)
9
9
 
10
10
  ## Functionality
11
11
 
@@ -36,6 +36,6 @@
36
36
 
37
37
  ## Installation
38
38
 
39
- [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
39
+ [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
40
40
 
41
41
  ## Notes
@@ -13,10 +13,9 @@
13
13
 
14
14
  require 'sensu-handler'
15
15
  require 'clockwork'
16
- require 'timeout'
17
16
 
18
17
  #
19
- # Clcokwork Sms Notify
18
+ # Clockwork SMS Notify
20
19
  #
21
20
  class ClockWorkSmsNotif < Sensu::Handler
22
21
  def event_name
@@ -37,7 +36,7 @@ class ClockWorkSmsNotif < Sensu::Handler
37
36
  end
38
37
  end
39
38
 
40
- def handle # rubocop:disable all
39
+ def handle
41
40
  key = settings['clockworksms']['key']
42
41
  to = settings['clockworksms']['to']
43
42
  from = settings['clockworksms']['from'] || 'SENSU'
@@ -2,7 +2,7 @@ module SensuPluginsClockworksms
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 3
5
+ PATCH = 4
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-clockworksms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu Plugins and contributors
@@ -30,7 +30,7 @@ cert_chain:
30
30
  8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
31
31
  HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
32
32
  -----END CERTIFICATE-----
33
- date: 2015-07-14 00:00:00.000000000 Z
33
+ date: 2015-12-01 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: clockwork
@@ -46,20 +46,6 @@ dependencies:
46
46
  - - '='
47
47
  - !ruby/object:Gem::Version
48
48
  version: 1.2.0
49
- - !ruby/object:Gem::Dependency
50
- name: timeout
51
- requirement: !ruby/object:Gem::Requirement
52
- requirements:
53
- - - '='
54
- - !ruby/object:Gem::Version
55
- version: 0.0.1
56
- type: :runtime
57
- prerelease: false
58
- version_requirements: !ruby/object:Gem::Requirement
59
- requirements:
60
- - - '='
61
- - !ruby/object:Gem::Version
62
- version: 0.0.1
63
49
  - !ruby/object:Gem::Dependency
64
50
  name: sensu-plugin
65
51
  requirement: !ruby/object:Gem::Requirement
@@ -94,14 +80,14 @@ dependencies:
94
80
  requirements:
95
81
  - - '='
96
82
  - !ruby/object:Gem::Version
97
- version: '0.30'
83
+ version: 0.32.1
98
84
  type: :development
99
85
  prerelease: false
100
86
  version_requirements: !ruby/object:Gem::Requirement
101
87
  requirements:
102
88
  - - '='
103
89
  - !ruby/object:Gem::Version
104
- version: '0.30'
90
+ version: 0.32.1
105
91
  - !ruby/object:Gem::Dependency
106
92
  name: rspec
107
93
  requirement: !ruby/object:Gem::Requirement
@@ -239,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
239
225
  version: '0'
240
226
  requirements: []
241
227
  rubyforge_project:
242
- rubygems_version: 2.4.6
228
+ rubygems_version: 2.4.8
243
229
  signing_key:
244
230
  specification_version: 4
245
231
  summary: Sensu plugins for clockworksms
metadata.gz.sig CHANGED
Binary file