From bd3d3895ab845c934ebd3d864a694b0d7c4929b1 Mon Sep 17 00:00:00 2001 From: Matt Jones Date: Wed, 3 Jun 2015 22:36:29 -0400 Subject: [PATCH] deploy --- CHANGELOG.md | 8 ++++++++ lib/sensu-plugins-xmpp.rb | 14 -------------- lib/sensu-plugins-xmpp/version.rb | 21 +-------------------- 3 files changed, 9 insertions(+), 34 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85db855..c47d8b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ## Unreleased][unreleased] +## [0.0.2] - 2015-06-03 + +### Fixed +- added binstubs + +### Changed +- removed cruft from /lib + ## 0.0.1 - 2015-05-21 ### Added diff --git a/lib/sensu-plugins-xmpp.rb b/lib/sensu-plugins-xmpp.rb index 5d9a791..0d51d17 100644 --- a/lib/sensu-plugins-xmpp.rb +++ b/lib/sensu-plugins-xmpp.rb @@ -1,15 +1 @@ - require 'sensu-plugins-xmpp/version' - -# Load the defaults - -# -# Default class -# -module SensuPluginsXmpp - class << self - end - - class << self - end -end diff --git a/lib/sensu-plugins-xmpp/version.rb b/lib/sensu-plugins-xmpp/version.rb index e8e3d15..fe4d779 100644 --- a/lib/sensu-plugins-xmpp/version.rb +++ b/lib/sensu-plugins-xmpp/version.rb @@ -1,28 +1,9 @@ -require 'json' - -# encoding: utf-8 module SensuPluginsXmpp - # 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-xmpp' - BANNER = "#{NAME} v%s" - - module_function - - def version - format(BANNER, VER_STRING) - end - - def json_version - { - 'version' => VER_STRING - }.to_json - end end end