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

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: 9904ef208172ba160f0e1bdaf931b388e2b7d797
4
- data.tar.gz: 0c2aee0310b205c93bfa2bfe786248558657b400
3
+ metadata.gz: 9362f6b679e8b77c7282a0cc9fd4588a5ec27bbd
4
+ data.tar.gz: 9004910b188b703b8de0b07691ac566078c6f367
5
5
  SHA512:
6
- metadata.gz: 2b2a239812eb60ed7f17bd6967f940a790243a65cc4d9f2a931c3652ec35a93121aeefebed3bbadc92140b98b69250960f357bffa3e23bbd812cb5c1857424a8
7
- data.tar.gz: 0174b6aa04ba6760da987a251907fb0da503395a75dbaff29f5f0edebb5daf40df3cfd8d97d855107ce7181d74ea812a20212e3eda5f5395e46140a509517e2f
6
+ metadata.gz: 537f05872bff865822a476134b53975c75b189398caa20729ad2c2113ab818b278ad46661eb461a97d208a598da6716d0ea44b094ce1a5ce2e2120991e61c9d3
7
+ data.tar.gz: b1294d2fc1da62dd0323f78c80cc71c0a6dc2cfc40d23296ce1b018a816322d7f5ab0cb5eb523dafc1a0529e2af6e8bccad9a465c3346a57a2bec7a9e1c7fe05
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,6 +1,14 @@
1
1
  Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
- #### 0.0.1.alpha.1
4
+ #Change Log
5
+ This project adheres to [Semantic Versioning](http://semver.org/).
6
+
7
+ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
8
+
9
+ ## Unreleased][unreleased]
10
+
11
+ ## 0.0.1 - 2015-05-04
5
12
 
6
- * identical functionality to the community-plugins repo
13
+ ### Added
14
+ - 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
@@ -1,52 +1,21 @@
1
- ## Sensu-Plugins-disk-checks
1
+ ## Sensu-Plugins-couchbase
2
2
 
3
3
  [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-couchbase.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-conntrack)
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-conntrack.svg)](http://badge.fury.io/rb/sensu-plugins-conntrack)
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-conntrack/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-conntrack)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-conntrack/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-conntrack)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-conntrack.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-conntrack)
8
+ [![Codeship Status for sensu-plugins/sensu-plugins-couchbase](https://codeship.com/projects/3087cc30-d4eb-0132-5af9-16774c8da8c5/status?branch=master)](https://codeship.com/projects/77916)
9
+
8
10
  ## Functionality
9
11
 
10
12
  ## Files
11
- * bin/check-couchbase-bucket-quota
13
+ * bin/check-couchbase-bucket-quota.rb
12
14
 
13
15
  ## Usage
14
16
 
15
17
  ## Installation
16
18
 
17
- Add the public key (if you haven’t already) as a trusted certificate
18
-
19
- ```
20
- gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
21
- gem install sensu-plugins-couchbase -P MediumSecurity
22
- ```
23
-
24
- You can also download the key from /certs/ within each repository.
25
-
26
- #### Rubygems
27
-
28
- `gem install sensu-plugins-couchbase`
29
-
30
- #### Bundler
31
-
32
- Add *sensu-plugins-couchbase* to your Gemfile and run `bundle install` or `bundle update`
33
-
34
- #### Chef
35
-
36
- Using the Sensu **sensu_gem** LWRP
37
- ```
38
- sensu_gem 'sensu-plugins-couchbase' do
39
- options('--prerelease')
40
- version '0.0.1.alpha.1'
41
- end
42
- ```
43
-
44
- Using the Chef **gem_package** resource
45
- ```
46
- gem_package 'sensu-plugins-couchbase' do
47
- options('--prerelease')
48
- version '0.0.1.alpha.1'
49
- end
50
- ```
19
+ [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
51
20
 
52
21
  ## Notes
@@ -0,0 +1,28 @@
1
+ require 'json'
2
+
3
+ # encoding: utf-8
4
+ module SensuPluginsCouchbase
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-couchbase'
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-couchbase/version'
2
+
3
+ # Load the defaults
4
+
1
5
  #
2
- # Set gem version
6
+ # Default class
3
7
  #
4
8
  module SensuPluginsCouchbase
5
- # Gem version
6
- VERSION = '0.0.1.alpha.1'
9
+ class << self
10
+ end
11
+
12
+ class << self
13
+ end
7
14
  end
data.tar.gz.sig CHANGED
@@ -1 +1,2 @@
1
- t'�En��LFs���A����j&��1ԑ�E���I�%�H�`g''f� �^:(Dh�?�����/��6�Kl��8��>���ۙ�������e��V'0���R.#W�d��?��\'.��c��K֠����.�����A�8e�7⦖B���;�)������P�j�ü���I�Q�Zˋ�1#�7%B)&�x.~ ��rfҟ����m*�t���띙�kG���h]�rh��"�o;v�jrK�
1
+ ��Crp��t
2
+ Mv��v��Z�i�܍��y�7�*��A#3�m�l�� Z�|��,& �@�c{����)υMP"۪V?"-V�㥱���E�ڢ�fj��S���H /��P{������(4���j���CR�؇2E%�}��8�{.�v(��D��/���g��>k�i�����^>� �å��tL ��gΒ%���=*/j:�����bq
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-couchbase
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-09 00:00:00.000000000 Z
33
+ date: 2015-05-05 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: rest-client
@@ -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/check-couchbase-bucket-quota.rb
213
213
  - lib/sensu-plugins-couchbase.rb
214
+ - lib/sensu-plugins-couchbase/version.rb
214
215
  homepage: https://github.com/sensu-plugins/sensu-plugins-boundary
215
216
  licenses:
216
217
  - MIT
@@ -218,7 +219,10 @@ metadata:
218
219
  maintainer: "@mattyjones"
219
220
  development_status: active
220
221
  production_status: unstable - testing recommended
221
- post_install_message:
222
+ releae_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 couchbase
241
245
  test_files: []
242
- has_rdoc:
metadata.gz.sig CHANGED
Binary file