sensu-plugins-campfire 0.0.1.alpha.1 → 0.0.2

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: afb9b73aa8436f0c8ad4bce372fec8563d96cc4e
4
- data.tar.gz: 40dbd2ba2c4ddcfa48e677ab997e661b0e430017
3
+ metadata.gz: fb82cf12fb5846dc7817178a933a79cf4e6cdbaa
4
+ data.tar.gz: 58d5e9bf639e182b02a52ffc28bed97930b2506d
5
5
  SHA512:
6
- metadata.gz: 78f7437ea1532466b0730603e5938b373047435f863b6fcbd3e4fe186c4ac63fc2464ee4c44e48b474a2b55ffdcc710cf14c091c6b025e363597e9f17344767f
7
- data.tar.gz: 92ca71bf4efb9148a94cc1156fd9b3ec4d2e3aca50d79e6f2148c30242468dd1611d199d65ff48376b28d508be05563868cb44fc66e13fab126e38e3dc7114f9
6
+ metadata.gz: 9cee7db25826ceb80edd88f92d8f8aa2735da314273aa481418f15b93a757411723d704fc2c25ee45d2414d5dcd931dcfb51635e897ac2663f3644e92465301f
7
+ data.tar.gz: 60355890ddff15f1b99e39c6423b0ab95c162086ed1aa8c55d3e5475fce4f1b4c2a0db6e8f406144062863d6c0a50f5b7dabd38e05822ec51fc7e41fa24107e2
data/CHANGELOG.md CHANGED
@@ -1 +1,16 @@
1
- #### 0.0.1.alpha.1
1
+ #Change Log
2
+ This project adheres to [Semantic Versioning](http://semver.org/).
3
+
4
+ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
+
6
+ ## Unreleased][unreleased]
7
+
8
+ ## 0.0.1 - 2015-04-21
9
+
10
+ ### Added
11
+ - initial release
12
+
13
+ ## 0.0.2 - 2015-04-21
14
+
15
+ ### Fixed
16
+ - deployment issue
data/README.md CHANGED
@@ -5,6 +5,7 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-campfire/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-campfire)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-campfire/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-campfire)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-campfire.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-campfire)
8
+ [ ![Codeship Status for sensu-plugins/sensu-plugins-campfire](https://codeship.com/projects/85bce530-ca50-0132-f20b-4a5d1f8b26a4/status?branch=master)](https://codeship.com/projects/75440)
8
9
 
9
10
  ## Functionality
10
11
 
@@ -0,0 +1,28 @@
1
+ require 'json'
2
+
3
+ # encoding: utf-8
4
+ module SensuPluginsCampfire
5
+ # This defines the version of the gem
6
+ module Version
7
+ MAJOR = 0
8
+ MINOR = 0
9
+ PATCH = 2
10
+
11
+ VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
12
+
13
+ NAME = 'sensu-plugins-campfire'
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
@@ -1,7 +1,14 @@
1
+ require 'sensu-plugins-campfire/version'
2
+
3
+ # Load the defaults
4
+
1
5
  #
2
- # Set gem version
6
+ # Default class
3
7
  #
4
8
  module SensuPluginsCampfire
5
- # Gem version
6
- VERSION = '0.0.1.alpha.1'
9
+ class << self
10
+ end
11
+
12
+ class << self
13
+ end
7
14
  end
metadata CHANGED
@@ -1,36 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-campfire
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.alpha.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yieldbot, Inc. and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain:
11
- - |
12
- -----BEGIN CERTIFICATE-----
13
- MIIDgDCCAmigAwIBAgIBATANBgkqhkiG9w0BAQUFADBDMRIwEAYDVQQDDAltYXR0
14
- am9uZXMxGDAWBgoJkiaJk/IsZAEZFgh5aWVsZGJvdDETMBEGCgmSJomT8ixkARkW
15
- A2NvbTAeFw0xNTAxMjgyMTAyNTFaFw0xNjAxMjgyMTAyNTFaMEMxEjAQBgNVBAMM
16
- CW1hdHRqb25lczEYMBYGCgmSJomT8ixkARkWCHlpZWxkYm90MRMwEQYKCZImiZPy
17
- LGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyTSzVYnO
18
- CLgyrIyT1mBQakArQyW8xhi6MlDqyzXHJGeERT790U6EgoBVeS4XoK0ptFZNR8Tf
19
- zko0w+Nv47TarSCgkPOaxY+mxWnAVR10dOmfeLr7huiMyps+YD56/EF2FqQ3jf/+
20
- qohENfKD91qy1ieEy+Fn7Pf74ltbNKUdkb9a9eFXQ0DQ4ip5vik7DzjQkUTj4lca
21
- k6ArwnmHX4YDhZoYtrQJ8jVktN0/+NtA40M5qkCYHNe5tUW25b/tKVYuioxG6b2Z
22
- oIzaZxRLxf6HVAWpCVRT/F5+/yjigkX4u++eYacfLGleXQzoK7BL65vHGMJygWEE
23
- 0TKGqFOrl/L0AQIDAQABo38wfTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
24
- HQ4EFgQUEf6a8Td7MrSZc8ImbLFZAENPbz0wIQYDVR0RBBowGIEWbWF0dGpvbmVz
25
- QHlpZWxkYm90LmNvbTAhBgNVHRIEGjAYgRZtYXR0am9uZXNAeWllbGRib3QuY29t
26
- MA0GCSqGSIb3DQEBBQUAA4IBAQBbzXAYA3BVGw8DZ0YYoY1VHPNEcH5qPIApmHO8
27
- rvSmuUT0yMEi7u00H/5uHRFf4LleGT/+sTdyXKsNPGT9kdRuQEgwi+vf7Zfvd8aX
28
- UF/+4VkEYf/8rV8Ere6u2QaWPgApdMV6JjKr1fAwCTd8AuGXNaWItiPPMseSQzLJ
29
- JKP4hVvbc1d+oS925B1lcBiqn2aYvElbyNAVmQPywNNqkWmvtlqj9ZVJfV5HQLdu
30
- 8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
31
- HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
32
- -----END CERTIFICATE-----
33
- date: 2015-04-09 00:00:00.000000000 Z
10
+ cert_chain: []
11
+ date: 2015-04-21 00:00:00.000000000 Z
34
12
  dependencies:
35
13
  - !ruby/object:Gem::Dependency
36
14
  name: tinder
@@ -197,6 +175,7 @@ files:
197
175
  - README.md
198
176
  - bin/handler-campfire.rb
199
177
  - lib/sensu-plugins-campfire.rb
178
+ - lib/sensu-plugins-campfire/version.rb
200
179
  homepage: https://github.com/sensu-plugins/sensu-plugins-campfire
201
180
  licenses:
202
181
  - MIT
@@ -215,14 +194,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
215
194
  version: 1.9.3
216
195
  required_rubygems_version: !ruby/object:Gem::Requirement
217
196
  requirements:
218
- - - ">"
197
+ - - ">="
219
198
  - !ruby/object:Gem::Version
220
- version: 1.3.1
199
+ version: '0'
221
200
  requirements: []
222
201
  rubyforge_project:
223
- rubygems_version: 2.2.2
202
+ rubygems_version: 2.4.6
224
203
  signing_key:
225
204
  specification_version: 4
226
205
  summary: Sensu plugins for campfire
227
206
  test_files: []
228
- has_rdoc:
checksums.yaml.gz.sig DELETED
@@ -1,2 +0,0 @@
1
- ���J5���օGi��o���t�DTe2��G�D����,C�;^!#Y�Eh���cSn�/!��(�s���*�\ ����r;4na(l
2
- �B��i�u+��U�Po��j�!Y�Q�-���B�1�#-�z��$��B������/�l%�����'�ݷ=���.;9��v�F�͛�( �=�\�T�y�xE$�(�D�GF����ky>ZH���+�=�Wxt��>M �0���&*��?Q�=�U�G! �/j-
data.tar.gz.sig DELETED
Binary file
metadata.gz.sig DELETED
Binary file