Skip to content

Commit 1dfed69

Browse files
author
Matt Jones
committed
deploy
1 parent 7be0cfb commit 1dfed69

File tree

3 files changed

+8
-34
lines changed

3 files changed

+8
-34
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
1010
### Added
1111
- initial release
1212

13+
## [0.0.2] - 2015-06-02
14+
15+
### Fixed
16+
- added binstubs
17+
18+
### Changed
19+
- removed cruft from /lib

lib/sensu-plugins-elasticsearch.rb

-14
Original file line numberDiff line numberDiff line change
@@ -1,15 +1 @@
1-
21
require 'sensu-plugins-elasticsearch/version'
3-
4-
# Load the defaults
5-
6-
#
7-
# Default class
8-
#
9-
module SensuPluginsElasticsearch
10-
class << self
11-
end
12-
13-
class << self
14-
end
15-
end
+1-20
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,9 @@
1-
require 'json'
2-
3-
# encoding: utf-8
41
module SensuPluginsElasticsearch
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-elasticsearch'
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)