From 09f04744710167a28d78e23245b4df765661a035 Mon Sep 17 00:00:00 2001 From: Wolfgang Teuber Date: Fri, 4 May 2018 02:45:42 +0200 Subject: [PATCH] Specify executables in Gemspec --- CHANGELOG.md | 4 ++++ lib/yaml_normalizer/version.rb | 2 +- yaml_normalizer.gemspec | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 971decd..235ff33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed ### Removed +## [1.0.1] - 2018-05-04 +### Changed +- Specify executables in Gemspec + ## [1.0.0] - 2018-05-04 ### Added diff --git a/lib/yaml_normalizer/version.rb b/lib/yaml_normalizer/version.rb index aaad6a8..5f9265d 100644 --- a/lib/yaml_normalizer/version.rb +++ b/lib/yaml_normalizer/version.rb @@ -2,5 +2,5 @@ module YamlNormalizer # The current Yaml Normalizer version - VERSION = '1.0.0' + VERSION = '1.0.1' end diff --git a/yaml_normalizer.gemspec b/yaml_normalizer.gemspec index 49f865f..a57d7f0 100644 --- a/yaml_normalizer.gemspec +++ b/yaml_normalizer.gemspec @@ -20,7 +20,7 @@ Gem::Specification.new do |spec| spec.license = 'Apache-2.0' spec.files = Dir['lib/**/*.rb'] spec.bindir = 'bin' - spec.executables = 'yaml_normalizer' + spec.executables = %w[yaml_check yaml_normalize] spec.require_paths = ['lib'] spec.add_dependency 'peach', '~> 0.5'