Skip to content

Commit fecf671

Browse files
author
Matt Jones
committed
deploy
1 parent e107f03 commit fecf671

File tree

3 files changed

+9
-33
lines changed

3 files changed

+9
-33
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
55

66
## Unreleased][unreleased]
77

8+
## [0.0.2] - 2015-06-03
9+
10+
### Fixed
11+
- added binstubs
12+
13+
### Changed
14+
- removed cruft from /lib
15+
816
## 0.0.1 - 2015-05-20
917

1018
### Added

lib/sensu-plugins-raid-checks.rb

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1 @@
11
require 'sensu-plugins-raid-checks/version'
2-
3-
# Load the defaults
4-
5-
#
6-
# Default class
7-
#
8-
module SensuPluginsRaidChecks
9-
class << self
10-
end
11-
12-
class << self
13-
end
14-
end
Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,9 @@
1-
require 'json'
2-
3-
# encoding: utf-8
41
module SensuPluginsRaidChecks
5-
# This defines the version of the gem
62
module Version
73
MAJOR = 0
84
MINOR = 0
9-
PATCH = 1
5+
PATCH = 2
106

117
VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
12-
13-
NAME = 'sensu-plugins-raid-checks'
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
278
end
289
end

0 commit comments

Comments
 (0)