From 58eef085c47bfd4b5a227773cd2c74c2d4ccdcdc Mon Sep 17 00:00:00 2001 From: Matt Jones Date: Wed, 3 Jun 2015 11:49:54 -0400 Subject: [PATCH] deploy --- CHANGELOG.md | 8 ++++++++ lib/sensu-plugins-influxdb.rb | 13 ------------- lib/sensu-plugins-influxdb/version.rb | 21 +-------------------- 3 files changed, 9 insertions(+), 33 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaa01ee..57d9660 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,3 +9,11 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release + +## [0.0.2] - 2015-06-03 + +### Fixed +- added binstubs + +### Changed +- removed cruft from /lib \ No newline at end of file diff --git a/lib/sensu-plugins-influxdb.rb b/lib/sensu-plugins-influxdb.rb index 1d9c76b..4864c4e 100644 --- a/lib/sensu-plugins-influxdb.rb +++ b/lib/sensu-plugins-influxdb.rb @@ -1,14 +1 @@ require 'sensu-plugins-influxdb/version' - -# Load the defaults - -# -# Default class -# -module SensuPluginsInfluxdb - class << self - end - - class << self - end -end diff --git a/lib/sensu-plugins-influxdb/version.rb b/lib/sensu-plugins-influxdb/version.rb index d88f8e4..7b63eea 100644 --- a/lib/sensu-plugins-influxdb/version.rb +++ b/lib/sensu-plugins-influxdb/version.rb @@ -1,28 +1,9 @@ -require 'json' - -# encoding: utf-8 module SensuPluginsInfluxdb - # This defines the version of the gem module Version MAJOR = 0 MINOR = 0 - PATCH = 1 + PATCH = 2 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') - - NAME = 'sensu-plugins-influxdb' - BANNER = "#{NAME} v%s" - - module_function - - def version - format(BANNER, VER_STRING) - end - - def json_version - { - 'version' => VER_STRING - }.to_json - end end end