gemwork 0.7.16 → 0.7.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e459ae34fcb57932b898bb1fb99b5ef296e4d4724dd3e532af083b348fd51b59
4
- data.tar.gz: 63462ad9ea0238661bc9e57a5a48d981e0a58509ba5e341033c24dbf7a49cbe7
3
+ metadata.gz: 5d5dbc7b49786f46f90f3a48a4919ed94f314ef405d912acd4985ff3e80ef96b
4
+ data.tar.gz: e914915becf213163c6cd17840c93f40de4c5b78a835b656c6872f8bfe82de29
5
5
  SHA512:
6
- metadata.gz: 6c4396abf1462b040a62d37507a2ed7e631311f20e052d1d4e46f20be3aec88ff9e7876c28372440de9f00469c0c1f948f40c05573d44408d93659601b5e2990
7
- data.tar.gz: 91b73181367d3b52a31458c38f14067f6323c02a3161689a13b5b6975075a46a3914060d50db23e392771bbd71892a3a3ed484b6efee651235425410397e40eb
6
+ metadata.gz: 36570607728f1b813845be5916103f48666bb705714c3882a461c069843c92d8854bf39ccf76c138f01e3017b26b9a9f5cf5f61e8da3ddf43d660a0e4097fbe7
7
+ data.tar.gz: 545a1667c3a39ced3b8ce144cb1399e5704bedff798a3286b58590c8ff5b83e7ddebaa4a2ffd24ae0a2245d201416abef7144d752a1fe48b8241f4cb499763da
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.7.17] - 2025-4-2
4
+
5
+ - Revert Rubocop config to ignore all files in the .gitignore spec
6
+
3
7
  ## [0.7.16] - 2025-4-1
4
8
 
5
9
  - Add `given` to test/support/spec_dsl.rb. Similar to `context` but includes "GIVEN " in the test description
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gemwork
4
- VERSION = "0.7.16"
4
+ VERSION = "0.7.17"
5
5
  end
@@ -6,10 +6,9 @@ AllCops:
6
6
  NewCops: enable
7
7
  UseCache: true
8
8
  Exclude:
9
- <% `git status --ignored --porcelain`.lines.grep(/^!! /).each do |path| %>
10
- - <%= path.sub(/^!! /, '').sub(/\/$/, '/**/*') %>
11
- <% end %>
12
9
  # Rubocop Defaults
10
+ - "node_modules/**/*"
11
+ - "tmp/**/*"
13
12
  - "vendor/**/*"
14
13
  - ".git/**/*"
15
14
  # Custom additions
@@ -5,9 +5,6 @@ AllCops:
5
5
  NewCops: enable
6
6
  UseCache: true
7
7
  Exclude:
8
- <% `git status --ignored --porcelain`.lines.grep(/^!! /).each do |path| %>
9
- - <%= path.sub(/^!! /, '').sub(/\/$/, '/**/*') %>
10
- <% end %>
11
8
  # Rubocop Defaults
12
9
  - "tmp/**/*"
13
10
  - ".git/**/*"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemwork
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.16
4
+ version: 0.7.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul DobbinSchmaltz