danger-missing_codeowners 1.2.1 → 1.2.2

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: 970c2a9802600b8d3b23d23f23810f11d2c5b3490e32c21b1de0dc662f7a094a
4
- data.tar.gz: a1ad21324215c762e3a69515f2b9b66281ef3a8955f238a9f9ff0867d3534f0a
3
+ metadata.gz: 4ee614f9e8f6c289b7703b986ab724fa66bb09823f63f0d2958db26bbf314692
4
+ data.tar.gz: c519cae4557cad087b86f80f42ab4ffb5eb45fef4716e9c52ac4c113bee083a7
5
5
  SHA512:
6
- metadata.gz: e9e820fc8a00114fe751122bcbd230fbeab691541b7e83ab5e2541cf558345461ebcf7b88b0b732fc8eed47ce401a66189acbb6620d441123e334bc81261e864
7
- data.tar.gz: 3ac47d981dbc81ab5f733de36da6ff872720bd56a1911e02f0b6219554bf6abaee1e33c075d7012b9e26c648779ffbd2cfc6e5ab0f35881acacec536c27347b1
6
+ metadata.gz: 25313015ad2565b99b1a91b8d3d62b42f193f0a3e62ceac78188f25569c6df22713c9fe50803bfc0f2c75b5cfc9cbe96a5df9261af1d3132d0a6079380b0d430
7
+ data.tar.gz: 6adaa343ee28ab37dc60a8855f31572d123ec54392d36e308ea7c46fcbd4a59200c1f7ad18dc0b2b69c83f41bc10138fe052d4894d1b7f9ed7b702c22f3f50c2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- danger-missing_codeowners (1.2.1)
4
+ danger-missing_codeowners (1.2.2)
5
5
  danger-plugin-api (~> 1.0)
6
6
  pathspec (~> 1.0.0)
7
7
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MissingCodeowners
4
- VERSION = "1.2.1"
4
+ VERSION = "1.2.2"
5
5
  end
@@ -134,7 +134,7 @@ module Danger
134
134
  components = line.split(/\s+(@\S+|\S+@\S+)/).reject { |c| c.strip.empty? }
135
135
  if line.match(/^\s*((?:#.*)|(?:\[.*)|(?:\^.*))?$/)
136
136
  next # Comment, group or empty line
137
- elsif components.length < 2
137
+ elsif components.empty?
138
138
  raise "[ERROR] Invalid CODEOWNERS line: '#{line}'"
139
139
  else
140
140
  pattern = components[0]
@@ -42,6 +42,9 @@ path\ with\ spaces/ @space-owner
42
42
  foo/bar/ @owners
43
43
  feature/ @owners
44
44
 
45
+ # Empty owners
46
+ empty/owners/
47
+
45
48
  # Code Owners section:
46
49
 
47
50
  [Database]
@@ -50,7 +50,8 @@ module Danger
50
50
  "very/nested/lib/source.js",
51
51
  "very/nested/sources/php/source.php",
52
52
  "model/db/",
53
- "sources/something.go"
53
+ "sources/something.go",
54
+ "empty/owners/foo.py"
54
55
  ])
55
56
 
56
57
  @my_plugin.verify
@@ -185,19 +186,6 @@ module Danger
185
186
  expect(@my_plugin.files_missing_codeowners.length).to eq(1)
186
187
  end
187
188
  end
188
-
189
- context "and invalid CODEOWNERS file" do
190
- before do
191
- allow(@my_plugin).to receive(:find_codeowners_file)
192
- .and_return("#{File.dirname(__FILE__)}/fixtures/INVALID_CODEOWNERS")
193
- end
194
-
195
- it "raises exception with invalid line" do
196
- allow(@my_plugin).to receive(:git_modified_files).and_return(["any_file.yml", "any_file.go"])
197
-
198
- expect { @my_plugin.verify }.to raise_error(RuntimeError)
199
- end
200
- end
201
189
  end
202
190
  end
203
191
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danger-missing_codeowners
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - andre-alves
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-21 00:00:00.000000000 Z
11
+ date: 2024-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: danger-plugin-api
@@ -187,7 +187,6 @@ files:
187
187
  - lib/missing_codeowners/gem_version.rb
188
188
  - lib/missing_codeowners/plugin.rb
189
189
  - spec/fixtures/CODEOWNERS
190
- - spec/fixtures/INVALID_CODEOWNERS
191
190
  - spec/missing_codeowners_spec.rb
192
191
  - spec/spec_helper.rb
193
192
  homepage: https://github.com/andre-alves/danger-missing_codeowners
@@ -215,6 +214,5 @@ specification_version: 4
215
214
  summary: A Danger plugin for checking if files have owners.
216
215
  test_files:
217
216
  - spec/fixtures/CODEOWNERS
218
- - spec/fixtures/INVALID_CODEOWNERS
219
217
  - spec/missing_codeowners_spec.rb
220
218
  - spec/spec_helper.rb
@@ -1,5 +0,0 @@
1
- # Example of Invalid CODEOWNERS
2
-
3
- *.yml @default-codeowner
4
- *.go @golang
5
- invalid.txt group