Skip to content

Commit

Permalink
Merge pull request #1 from StatusCakeDev/include-support-file-in-gem
Browse files Browse the repository at this point in the history
Include support files in Gem
  • Loading branch information
tomasbasham authored Sep 13, 2022
2 parents 39d14b5 + 1ea491d commit f864a19
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion statuscake.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rubocop-rake', '~> 0.5', '>= 0.5.1'
s.add_development_dependency 'rubocop-rspec', '~> 2.12', '>= 2.12.1'

s.files = Dir.glob('{bin,lib}/**/*').uniq.sort.reject(&:empty?)
s.files = [
'README.md',
'LICENSE.md',
*Dir.glob('{bin,lib}/**/*').uniq.sort.reject(&:empty?),
]

s.executables = []
s.require_paths = ['lib']
end

0 comments on commit f864a19

Please sign in to comment.