Skip to content

Commit

Permalink
Add missing files to gemspec
Browse files Browse the repository at this point in the history
2.15.0 is broken because we're failing to include the backport patch
which we try to `require` at the top of `rubocop.yml`.

This updates the `gempspec` to include all ruby files under `lib`, as
well as the `README.md`. It also switches to use a wildcard to match the
`rubocop.yml` and `rubocop-cli.yml` files, which will be useful when we
add extension configs.
  • Loading branch information
sambostock committed Feb 15, 2024
1 parent f4a923d commit 70a48d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rubocop-shopify.gemspec
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.email = "gems@shopify.com"
s.homepage = "https://shopify.github.io/ruby-style-guide/"

s.files = ["rubocop.yml", "rubocop-cli.yml", "LICENSE.md"]
s.files = Dir["rubocop*.yml", "lib/**/*", "LICENSE.md", "README.md"]

s.metadata = {
"source_code_uri" => "https://github.com/Shopify/ruby-style-guide/tree/v#{s.version}",
Expand Down

0 comments on commit 70a48d5

Please sign in to comment.