Skip to content

Commit

Permalink
Include .gitattributes when building the gem (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
pokonski authored Jul 29, 2024
1 parent 24b66e8 commit 69bfc1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jsbundling-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Gem::Specification.new do |spec|
spec.summary = "Bundle and transpile JavaScript in Rails with bun, esbuild, rollup.js, or Webpack."
spec.license = "MIT"

spec.files = Dir["lib/**/*", "MIT-LICENSE", "README.md"]
spec.files = Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
spec.files += ["LICENSE", "README.md"]

spec.add_dependency "railties", ">= 6.0.0"
end

0 comments on commit 69bfc1c

Please sign in to comment.