sensu-plugins-nginx 0.0.1.alpha.2 → 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: 97a27581bc50fe90f6e399854c5cbebb23f60c6b
4
- data.tar.gz: e5483e528cc683874c6a7d32038d63899be86aea
3
+ metadata.gz: a360d0bd2c831bb98e4603806125c05c3000f58b
4
+ data.tar.gz: b974328c59089f53b7dfb540574c4dfad092225f
5
5
  SHA512:
6
- metadata.gz: e2c0437f2adc86ea16145bf153725e280405cfb1188f7d4c1965a5cdc770e19c492d3d959391cb14768d88d1dd3d457c3b4a58639ab57b39af1f46204b3679fb
7
- data.tar.gz: 4555f543c2140035ea02ce8ae45942c11075510ad82fb1bb4662c9a967fe8341a88090ba8606879db09909557df03dd94cc77daec1ab3fdc9b1b47b36252ff4a
6
+ metadata.gz: f3104129a3815cd7fd33bb452ee1be8cc6d4831bea37d21c82107ac1dd5faf3694c033051858fe30a39d089d0b471b00178b9c5f281c755b86ba88b700ce7ebe
7
+ data.tar.gz: f27402b300ba352eb307660d4e2de539a3c50d46bc6cfe7d88ff0d8df0c3f06eecb7797fdf358e3e786c7a91bfa134820d632de0213bf07b0a2699f2515bff43
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -13,3 +13,7 @@
13
13
  * update README
14
14
  * add required Ruby version *>= 1.9.3*
15
15
  * add test/spec_help.rb
16
+
17
+ #### 0.0.1
18
+
19
+ * edit readme
data/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-nginx.svg)](http://badge.fury.io/rb/sensu-plugins-nginx)
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-nginx/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-nginx)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-nginx/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-nginx)
7
+ [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-nginx.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-nginx)
7
8
 
8
9
  ## Functionality
9
10
 
@@ -15,20 +16,43 @@ Fetch the nginx status page and convert the response into graphite metrics
15
16
  * bin/nginx-metrics.rb
16
17
  Get the nginx metrics from the status page url for use with Graphite
17
18
 
18
- ## Installation
19
+ ## Usage
19
20
 
21
+ ## Installation
20
22
 
21
23
  Add the public key (if you haven’t already) as a trusted certificate
22
24
 
23
25
  ```
24
26
  gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
25
- gem install <gem> -P MediumSecurity
27
+ gem install sensu-plugins-nginx -P MediumSecurity
26
28
  ```
27
29
 
28
30
  You can also download the key from /certs/ within each repository.
29
31
 
32
+ #### Rubygems
33
+
30
34
  `gem install sensu-plugins-nginx`
31
35
 
32
- Add *sensu-plugins-nginx* to your Gemfile, manifest, cookbook, etc
36
+ #### Bundler
37
+
38
+ Add *sensu-plugins-nginx* to your Gemfile and run `bundle install` or `bundle update`
39
+
40
+ #### Chef
41
+
42
+ Using the Sensu **sensu_gem** LWRP
43
+ ```
44
+ sensu_gem 'sensu-plugins-nginx' do
45
+ options('--prerelease')
46
+ version '0.0.1.alpha.1'
47
+ end
48
+ ```
49
+
50
+ Using the Chef **gem_package** resource
51
+ ```
52
+ gem_package 'sensu-plugins-nginx' do
53
+ options('--prerelease')
54
+ version '0.0.1.alpha.1'
55
+ end
56
+ ```
33
57
 
34
58
  ## Notes
@@ -3,5 +3,5 @@
3
3
  #
4
4
  module SensuPluginsNginx
5
5
  # Gem version
6
- VERSION = '0.0.1.alpha.2'
6
+ VERSION = '0.0.1'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-nginx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.alpha.2
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-02-01 00:00:00.000000000 Z
33
+ date: 2015-02-11 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: sensu-plugin
@@ -185,9 +185,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
185
185
  version: 1.9.3
186
186
  required_rubygems_version: !ruby/object:Gem::Requirement
187
187
  requirements:
188
- - - '>'
188
+ - - '>='
189
189
  - !ruby/object:Gem::Version
190
- version: 1.3.1
190
+ version: '0'
191
191
  requirements: []
192
192
  rubyforge_project:
193
193
  rubygems_version: 2.0.14
metadata.gz.sig CHANGED
Binary file