Skip to content

Commit

Permalink
Merge pull request #40 from Sage/specify_executables_in_gemspec
Browse files Browse the repository at this point in the history
Specify executables in Gemspec
  • Loading branch information
wteuber authored May 4, 2018
2 parents 489872a + 09f0474 commit e75588a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/yaml_normalizer/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module YamlNormalizer
# The current Yaml Normalizer version
VERSION = '1.0.0'
VERSION = '1.0.1'
end
2 changes: 1 addition & 1 deletion yaml_normalizer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit e75588a

Please sign in to comment.