Skip to content

Commit 3a58c11

Browse files
authored
Merge pull request #53 from mauro-oto/do-not-ship-assets-in-gem
Do not include demo gif in the built gem
2 parents f64b578 + 4e5a23b commit 3a58c11

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## HEAD (unreleased)
22

3+
- Avoid including demo gif in built gem (https://github.com/zombocom/dead_end/pull/53)
4+
35
## 1.1.3
46

57
- Add compatibility with zeitwerk (https://github.com/zombocom/dead_end/pull/52)

dead_end.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
2020
# Specify which files should be added to the gem when it is released.
2121
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
2222
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
23-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
23+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|assets)/}) }
2424
end
2525
spec.bindir = "exe"
2626
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }

0 commit comments

Comments
 (0)