sensu-plugins-clockworksms 0.0.1.alpha.1 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 969e4afd16a960d42722eb15dd95493840330e4d
4
- data.tar.gz: 21b461e9fdf51c92d8e5f3ce2bf6b86b426c500b
3
+ metadata.gz: ae3c15a0cd364b840ccf1e94d950828a3c92a2a0
4
+ data.tar.gz: aa7646c54cf38d9dd3c3492633324155a154f41b
5
5
  SHA512:
6
- metadata.gz: 002f73a58f06eae98029b5728149dfed1c21ac91a826e57ddc5c86ca99e51262584361c7311cf99c5f84858e3affcf1cd61af46bf5e297dfeba07deb5e70ac7e
7
- data.tar.gz: 4269316e69ac92b2d6878b5ba2b76bb4d86872a334238fa8b032da29d3974b2ffebdc54890d26b7cd31717b6345ec2b599740130bfe40929cee9e65946276e81
6
+ metadata.gz: 6fea3ee75f681e998f1e928005c95282cf972d2c240ec447fc812a86d37f9e45cd5a2b341c3cf2ffdeae0aec671ef2316693cebd52488f43fc244e9875de8b05
7
+ data.tar.gz: 360c41d7741687c6b9d99b42d2db6f67170da9f4b17056e6a7adb8860a56e15fb5ce3d76ebe1a479910296376bc955af72369d5a388c7c2167bbc29b9a1fdd88
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
- Change Log
1
+ #Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
- #### 0.0.1.alpha.1
4
+ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
- * identical functionality to the community-plugins repo
6
+ ## Unreleased][unreleased]
7
+
8
+ ## 0.0.1 - 2015-04-30
9
+
10
+ ### Added
11
+ - initial release
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 devops@yieldbot.com
1
+ Copyright (c) 2015 Sensu-Plugins
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -5,11 +5,12 @@
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
9
 
9
10
  ## Functionality
10
11
 
11
12
  ## Files
12
- * bin/handler-clockworksms
13
+ * bin/handler-clockworksms.rb
13
14
 
14
15
  ## Usage
15
16
 
@@ -37,37 +38,6 @@
37
38
 
38
39
  Add the public key (if you haven’t already) as a trusted certificate
39
40
 
40
- ```
41
- gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
42
- gem install sensu-plugins-clockworksms -P MediumSecurity
43
- ```
44
-
45
- You can also download the key from /certs/ within each repository.
46
-
47
- #### Rubygems
48
-
49
- `gem install sensu-plugins-clockworksms`
50
-
51
- #### Bundler
52
-
53
- Add *sensu-plugins-clockworkcms* to your Gemfile and run `bundle install` or `bundle update`
54
-
55
- #### Chef
56
-
57
- Using the Sensu **sensu_gem** LWRP
58
- ```
59
- sensu_gem 'sensu-plugins-clockworksms' do
60
- options('--prerelease')
61
- version '0.0.1'
62
- end
63
- ```
64
-
65
- Using the Chef **gem_package** resource
66
- ```
67
- gem_package 'sensu-plugins-clockworksms' do
68
- options('--prerelease')
69
- version '0.0.1'
70
- end
71
- ```
41
+ [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
72
42
 
73
43
  ## Notes
File without changes
@@ -1,7 +1,14 @@
1
+ require 'sensu-plugins-clockworksms/version'
2
+
3
+ # Load the defaults
4
+
1
5
  #
2
- # Set gem version
6
+ # Default class
3
7
  #
4
8
  module SensuPluginsClockworksms
5
- # Gem version
6
- VERSION = '0.0.1.alpha.1'
9
+ class << self
10
+ end
11
+
12
+ class << self
13
+ end
7
14
  end
@@ -0,0 +1,28 @@
1
+ require 'json'
2
+
3
+ # encoding: utf-8
4
+ module SensuPluginsClockworksms
5
+ # This defines the version of the gem
6
+ module Version
7
+ MAJOR = 0
8
+ MINOR = 0
9
+ PATCH = 1
10
+
11
+ VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
12
+
13
+ NAME = 'sensu-plugins-clockworksms'
14
+ BANNER = "#{NAME} v%s"
15
+
16
+ module_function
17
+
18
+ def version
19
+ format(BANNER, VER_STRING)
20
+ end
21
+
22
+ def json_version
23
+ {
24
+ 'version' => VER_STRING
25
+ }.to_json
26
+ end
27
+ end
28
+ 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.1.alpha.1
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yieldbot, Inc. 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-04-09 00:00:00.000000000 Z
33
+ date: 2015-04-30 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: clockwork
@@ -92,16 +92,16 @@ dependencies:
92
92
  name: rubocop
93
93
  requirement: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - '='
95
+ - - "~>"
96
96
  - !ruby/object:Gem::Version
97
- version: 0.17.0
97
+ version: '0.30'
98
98
  type: :development
99
99
  prerelease: false
100
100
  version_requirements: !ruby/object:Gem::Requirement
101
101
  requirements:
102
- - - '='
102
+ - - "~>"
103
103
  - !ruby/object:Gem::Version
104
- version: 0.17.0
104
+ version: '0.30'
105
105
  - !ruby/object:Gem::Dependency
106
106
  name: rspec
107
107
  requirement: !ruby/object:Gem::Requirement
@@ -211,6 +211,7 @@ files:
211
211
  - README.md
212
212
  - bin/handler-clockworksms.rb
213
213
  - lib/sensu-plugins-clockworksms.rb
214
+ - lib/sensu-plugins-clockworksms/version.rb
214
215
  homepage: https://github.com/sensu-plugins/sensu-plugins-clockworksms
215
216
  licenses:
216
217
  - MIT
@@ -218,7 +219,10 @@ metadata:
218
219
  maintainer: ''
219
220
  development_status: unmaintained
220
221
  production_status: unstable - testing recommended
221
- post_install_message:
222
+ release_draft: 'false'
223
+ release_prerelease: 'false'
224
+ post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
225
+ in /etc/default/sensu
222
226
  rdoc_options: []
223
227
  require_paths:
224
228
  - lib
@@ -229,14 +233,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
229
233
  version: 1.9.3
230
234
  required_rubygems_version: !ruby/object:Gem::Requirement
231
235
  requirements:
232
- - - ">"
236
+ - - ">="
233
237
  - !ruby/object:Gem::Version
234
- version: 1.3.1
238
+ version: '0'
235
239
  requirements: []
236
240
  rubyforge_project:
237
- rubygems_version: 2.2.2
241
+ rubygems_version: 2.4.6
238
242
  signing_key:
239
243
  specification_version: 4
240
244
  summary: Sensu plugins for clockworksms
241
245
  test_files: []
242
- has_rdoc:
metadata.gz.sig CHANGED
@@ -1,2 +1,6 @@
1
- ^Hoiq6�H{�=th�AU�$��ؒ���M�-���� k��}�2������� ���+����,�s�r���e�I��0���m�>��<�q���~k�Q%�7�֪ƺ5ofKJ��`��Y���¹W�[aޜɦ6\i�Y�Z
2
- �����������PdN���zOҢ�W�J���7`��}�I 6�ɉō��<���)�l�g4�����Mԩ)�#|�]�����|�Ҩ��@)3�ԕ����*'
1
+ ���
2
+ S���h��%v3u/�:�=�YG���
3
+ *L���Ǵ�ꖅ]�u
4
+ ! =͆
5
+ Ϝ�4���v�AG[�f
6
+ �ro=��� H�!����nkۯ+ʅ��Z�G�����Ċ6𧱗R b�H'�>��2�:�����v%�q�=G'C���{���j�}$oס