Skip to content

Commit

Permalink
fix(gemspec): only include lib/ to files list
Browse files Browse the repository at this point in the history
  • Loading branch information
gierschv committed Mar 8, 2024
1 parent 6488167 commit 576cac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flat_api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Gem::Specification.new do |s|

s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'

s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
s.files = Dir.glob("lib/**/*").sort.select { |f| !f.empty? }
s.test_files = `find spec/*`.split("\n")
s.executables = []
s.require_paths = ["lib"]
Expand Down

0 comments on commit 576cac9

Please sign in to comment.