From 5c8d8377e0895eea549be000525a197c07b2c638 Mon Sep 17 00:00:00 2001 From: Matt Jones Date: Thu, 4 Jun 2015 18:20:42 -0400 Subject: [PATCH] deploy --- CHANGELOG.md | 10 +++++++++- lib/sensu-plugins-raid-checks/version.rb | 2 +- sensu-plugins-raid-checks.gemspec | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c31a7d..b95c8b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ## Unreleased][unreleased] +## [0.0.3] - 2015-06-04 + +### Added +- Merge PR #1 + - If a grep of lspci returns nothing then don't check for software raid. + +### Fixed +- Set the gemspec to only create binstubs for Ruby scripts + ## [0.0.2] - 2015-06-03 ### Fixed @@ -17,4 +26,3 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang ### Added - initial release - diff --git a/lib/sensu-plugins-raid-checks/version.rb b/lib/sensu-plugins-raid-checks/version.rb index 9e4e8a6..d2ac80f 100644 --- a/lib/sensu-plugins-raid-checks/version.rb +++ b/lib/sensu-plugins-raid-checks/version.rb @@ -2,7 +2,7 @@ module SensuPluginsRaidChecks module Version MAJOR = 0 MINOR = 0 - PATCH = 2 + PATCH = 3 VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.') end diff --git a/sensu-plugins-raid-checks.gemspec b/sensu-plugins-raid-checks.gemspec index a205b5d..a986aa4 100644 --- a/sensu-plugins-raid-checks.gemspec +++ b/sensu-plugins-raid-checks.gemspec @@ -17,7 +17,7 @@ Gem::Specification.new do |s| s.date = Date.today.to_s s.description = 'Sensu plugins for working with raid devices' s.email = '' - s.executables = Dir.glob('bin/**/*').map { |file| File.basename(file) } + s.executables = Dir.glob('bin/**/*.rb').map { |file| File.basename(file) } s.files = Dir.glob('{bin,lib}/**/*') + %w(LICENSE README.md CHANGELOG.md) s.homepage = 'https://github.com/sensu-plugins/sensu-plugins-raid-checks' s.license = 'MIT'