Skip to content

Commit

Permalink
Merge pull request #66 from domcleal/gem-missing-libs
Browse files Browse the repository at this point in the history
Include all lib/ files in gem
  • Loading branch information
domcleal authored Jun 1, 2017
2 parents 599241d + 5a8d06f commit 057515f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions metadata-json-lint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@ require 'date'

Gem::Specification.new do |s|
s.name = 'metadata-json-lint'
s.version = '1.2.0'
s.version = '1.2.1'
s.date = Date.today.to_s
s.summary = 'metadata-json-lint /path/to/metadata.json'
s.description = 'Utility to verify Puppet metadata.json files'
s.authors = ['Vox Pupuli']
s.email = '[email protected]'
s.files = ['bin/metadata-json-lint', 'lib/metadata_json_lint.rb', 'lib/metadata-json-lint/rake_task.rb']
s.executables << 'metadata-json-lint'

s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(tests|spec)/})

s.homepage = 'http://github.com/voxpupuli/metadata-json-lint'
s.license = 'Apache-2.0'

Expand Down

0 comments on commit 057515f

Please sign in to comment.