sensu-plugins-eep 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: 0aa70bb357c59bf7819245bf1a474147d7357f01
4
- data.tar.gz: d5362f4d350870d350d7300cd92027378eb71152
3
+ metadata.gz: a157be6983bea29303574804cd70b64d43d48a99
4
+ data.tar.gz: e94a1c7460697e9d73538dbf66dc2b0269bfff9a
5
5
  SHA512:
6
- metadata.gz: 0e5480a3cad9bd2a6d4f601b1dcd460b33f51940db532d5b3542810755e688a4fcc9df011830880103175c86abc4bade56655973c52687e6362466d863065c21
7
- data.tar.gz: b4e8b61b4d96f43e235f392e39add70e9f32c8fea1091577072889c69242aae24b20dab3bd75b9b67a9d4690ba3ebcae7321d3c710f378c57ed73aaeca15ea32
6
+ metadata.gz: 25e25fcec236b1d38347a5588bee80fdf92460740f8976befa41e21492b57abc3b084d6a7a04687f122a8982ffa7d4bc367c00c53a7a3303fba7fd458135bace
7
+ data.tar.gz: 2641abc01b7dbe3b1987f24237e7c4b0395011739f681464327fc63377836b5ab1b54abac4e323f4b369613d82d47802f12945936dad62c84aa951e8c66036ee
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,4 +1,12 @@
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
+
6
+ ## Unreleased][unreleased]
7
+
8
+ ## 0.0.1 - 2015-04-30
9
+
10
+ ### Added
11
+ - initial release
12
+
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-eep/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-eep)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-eep/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-eep)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-eep.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-eep)
8
+ [ ![Codeship Status for sensu-plugins/sensu-plugins-eep](https://codeship.com/projects/5a5f3be0-db3a-0132-cb23-0eed4ec53b27/status?branch=master)](https://codeship.com/projects/79571)
8
9
 
9
10
  ## Functionality
10
11
 
11
12
  ## Files
12
- * bin/handler-eep
13
+ * bin/handler-eep.rb
13
14
 
14
15
  ## Usage
15
16
 
@@ -23,39 +24,6 @@
23
24
 
24
25
  ## Installation
25
26
 
26
- Add the public key (if you haven’t already) as a trusted certificate
27
-
28
- ```
29
- gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
30
- gem install sensu-plugins-eep -P MediumSecurity
31
- ```
32
-
33
- You can also download the key from /certs/ within each repository.
34
-
35
- #### Rubygems
36
-
37
- `gem install sensu-plugins-eep`
38
-
39
- #### Bundler
40
-
41
- Add *sensu-plugins-eep* to your Gemfile and run `bundle install` or `bundle update`
42
-
43
- #### Chef
44
-
45
- Using the Sensu **sensu_gem** LWRP
46
- ```
47
- sensu_gem 'sensu-plugins-eep' do
48
- options('--prerelease')
49
- version '0.0.1'
50
- end
51
- ```
52
-
53
- Using the Chef **gem_package** resource
54
- ```
55
- gem_package 'sensu-plugins-eep' do
56
- options('--prerelease')
57
- version '0.0.1'
58
- end
59
- ```
27
+ [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
60
28
 
61
29
  ## Notes
@@ -1,7 +1,14 @@
1
+ require 'sensu-plugins-eep/version'
2
+
3
+ # Load the defaults
4
+
1
5
  #
2
- # Set gem version
6
+ # Default class
3
7
  #
4
8
  module SensuPluginsEEP
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 SensuPluginsEEP
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-eep'
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,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-eep
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
- - Yieldbot, Inc. and contributors
7
+ - Sensu Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain:
@@ -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-11 00:00:00.000000000 Z
33
+ date: 2015-05-22 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: eep_client
@@ -78,16 +78,16 @@ dependencies:
78
78
  name: rubocop
79
79
  requirement: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - '='
81
+ - - "~>"
82
82
  - !ruby/object:Gem::Version
83
- version: 0.17.0
83
+ version: '0.30'
84
84
  type: :development
85
85
  prerelease: false
86
86
  version_requirements: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - '='
88
+ - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: 0.17.0
90
+ version: '0.30'
91
91
  - !ruby/object:Gem::Dependency
92
92
  name: rspec
93
93
  requirement: !ruby/object:Gem::Requirement
@@ -197,6 +197,7 @@ files:
197
197
  - README.md
198
198
  - bin/handler-eep.rb
199
199
  - lib/sensu-plugins-eep.rb
200
+ - lib/sensu-plugins-eep/version.rb
200
201
  homepage: https://github.com/sensu-plugins/sensu-plugins-eep
201
202
  licenses:
202
203
  - MIT
@@ -204,7 +205,8 @@ metadata:
204
205
  maintainer: ''
205
206
  development_status: unmaintained
206
207
  production_status: unstable - testing recommended
207
- post_install_message:
208
+ post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
209
+ in /etc/default/sensu
208
210
  rdoc_options: []
209
211
  require_paths:
210
212
  - lib
@@ -215,14 +217,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
215
217
  version: 1.9.3
216
218
  required_rubygems_version: !ruby/object:Gem::Requirement
217
219
  requirements:
218
- - - ">"
220
+ - - ">="
219
221
  - !ruby/object:Gem::Version
220
- version: 1.3.1
222
+ version: '0'
221
223
  requirements: []
222
224
  rubyforge_project:
223
- rubygems_version: 2.2.2
225
+ rubygems_version: 2.4.6
224
226
  signing_key:
225
227
  specification_version: 4
226
228
  summary: Sensu plugins for eep
227
229
  test_files: []
228
- has_rdoc:
metadata.gz.sig CHANGED
Binary file