Skip to content

Commit

Permalink
chore: Exclude sample directory from gemspec files
Browse files Browse the repository at this point in the history
The gemspec files were updated to exclude the `sample` directory from the list of files included in the gem. This ensures that the `sample` directory is not included when building the gem.
  • Loading branch information
ydah committed Jun 27, 2024
1 parent cac17e2 commit f5422d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lrama.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")

spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features|sample)/}) }
end

spec.metadata["homepage_uri"] = spec.homepage
Expand Down

0 comments on commit f5422d1

Please sign in to comment.