Skip to content

Commit

Permalink
Merge pull request #311 from scientist-softserv/remove-specs-and-bin-…
Browse files Browse the repository at this point in the history
…rails-from-files

🧹 Exclude specs and bin/rails from gem files
  • Loading branch information
jeremyf authored Dec 20, 2023
2 parents e476998 + 500bc16 commit 2dfd14b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iiif_print.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
(primarily scanned) content.
SUMMARY
spec.license = 'Apache-2.0'
spec.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
spec.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR).select { |f| File.dirname(f) !~ %r{\A"?spec\/?} && f != 'bin/rails' }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.add_dependency 'blacklight_iiif_search', '>= 1.0', '< 3.0'
spec.add_dependency 'derivative-rodeo', "~> 0.5"
Expand Down

0 comments on commit 2dfd14b

Please sign in to comment.