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

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: 163ba71591dda5615a89ff5cae7c134bc2dd18e9
4
- data.tar.gz: d72bb2bf595384ff70bb8b70bc0a58efdb269717
3
+ metadata.gz: 558e4746956c976da25861290b5a19aa2d656ec6
4
+ data.tar.gz: c2b73472aa7eeb1088d19acc9692649fedf8b7e5
5
5
  SHA512:
6
- metadata.gz: c022c43b7c1ed81ddd08982fa5b9030a0c45849937332a82268894a7782bd03bf72ec2c5aadaea2902e40ab58f4e518976834a907c9c81a7f416da40319da792
7
- data.tar.gz: 0d309b1a68714674cdcb14c017856a3f915aff8bdc989b12d9ef9ede61ff3baf6a0192d650aefc74d98e4b8eda6f892f058adbc2fe32cec4f3c9ee4d97f9b887
6
+ metadata.gz: eafd6c4acaf1d8596c8b1370f7dcff2c4eb6c439962557a43ea94a540805b9dc9079531b3c10ef20233533e1884b3d22b4edb1fc57f79a9ad60ef03ddf64b518
7
+ data.tar.gz: 6a145322b93e4eecd2ecc993afd2d0df3ff6cd098e0d14252defc8d4321a79a9b6f97ac05ac647a7f2dfb2164ef2190fff0d989131ca095dfa06829d71879a9d
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,4 +1,15 @@
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-04-30
12
+
13
+ ### Added
14
+ - initial release
15
+
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,49 +5,17 @@
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-dns/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-dns)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-dns/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-dns)
7
7
  [![Dependency Status](https://gemnasium.com/sensu-plugins/sensu-plugins-dns.svg)](https://gemnasium.com/sensu-plugins/sensu-plugins-dns)
8
+ [ ![Codeship Status for sensu-plugins/sensu-plugins-dns](https://codeship.com/projects/2f39b7d0-d5af-0132-5eda-2a31c2fb7a04/status?branch=master)](https://codeship.com/projects/78143)
8
9
 
9
10
  ## Functionality
10
11
 
11
12
  ## Files
12
- * bin/check-dns
13
+ * bin/check-dns.rb
13
14
 
14
15
  ## Usage
15
16
 
16
17
  ## Installation
17
18
 
18
- Add the public key (if you haven’t already) as a trusted certificate
19
-
20
- ```
21
- gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
22
- gem install sensu-plugins-dns -P MediumSecurity
23
- ```
24
-
25
- You can also download the key from /certs/ within each repository.
26
-
27
- #### Rubygems
28
-
29
- `gem install sensu-plugins-dns`
30
-
31
- #### Bundler
32
-
33
- Add *sensu-plugins-disk-checks* to your Gemfile and run `bundle install` or `bundle update`
34
-
35
- #### Chef
36
-
37
- Using the Sensu **sensu_gem** LWRP
38
- ```
39
- sensu_gem 'sensu-plugins-dns' do
40
- options('--prerelease')
41
- version '0.0.1'
42
- end
43
- ```
44
-
45
- Using the Chef **gem_package** resource
46
- ```
47
- gem_package 'sensu-plugins-dns' do
48
- options('--prerelease')
49
- version '0.0.1'
50
- end
51
- ```
19
+ [Installation and Setup](https://github.com/sensu-plugins/documentation/blob/master/user_docs/installation_instructions.md)
52
20
 
53
21
  ## Notes
@@ -1,7 +1,14 @@
1
+ require 'sensu-plugins-dns/version'
2
+
3
+ # Load the defaults
4
+
1
5
  #
2
- # Set gem version
6
+ # Default class
3
7
  #
4
8
  module SensuPluginsDNS
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 SensuPluginsDNS
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-dns'
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-dns
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
- - 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-06 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: sensu-plugin
@@ -64,16 +64,16 @@ dependencies:
64
64
  name: rubocop
65
65
  requirement: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - '='
67
+ - - "~>"
68
68
  - !ruby/object:Gem::Version
69
- version: 0.17.0
69
+ version: '0.30'
70
70
  type: :development
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - '='
74
+ - - "~>"
75
75
  - !ruby/object:Gem::Version
76
- version: 0.17.0
76
+ version: '0.30'
77
77
  - !ruby/object:Gem::Dependency
78
78
  name: rspec
79
79
  requirement: !ruby/object:Gem::Requirement
@@ -183,14 +183,18 @@ files:
183
183
  - README.md
184
184
  - bin/check-dns.rb
185
185
  - lib/sensu-plugins-dns.rb
186
+ - lib/sensu-plugins-dns/version.rb
186
187
  homepage: https://github.com/sensu-plugins/sensu-plugins-dns
187
188
  licenses:
188
189
  - MIT
189
190
  metadata:
190
- maintainer: ''
191
- development_status: unmaintained
191
+ maintainer: "@mattyjones"
192
+ development_status: active
192
193
  production_status: unstable - testing recommended
193
- post_install_message:
194
+ release_draft: 'false'
195
+ release_prerelease: 'false'
196
+ post_install_message: You can use the embedded Ruby by setting EMBEDDED_RUBY=true
197
+ in /etc/default/sensu
194
198
  rdoc_options: []
195
199
  require_paths:
196
200
  - lib
@@ -201,14 +205,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
201
205
  version: 1.9.3
202
206
  required_rubygems_version: !ruby/object:Gem::Requirement
203
207
  requirements:
204
- - - ">"
208
+ - - ">="
205
209
  - !ruby/object:Gem::Version
206
- version: 1.3.1
210
+ version: '0'
207
211
  requirements: []
208
212
  rubyforge_project:
209
- rubygems_version: 2.2.2
213
+ rubygems_version: 2.4.6
210
214
  signing_key:
211
215
  specification_version: 4
212
216
  summary: Sensu plugins for dns
213
217
  test_files: []
214
- has_rdoc:
metadata.gz.sig CHANGED
Binary file