danger-missing_codeowners 1.2.1 → 1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/missing_codeowners/gem_version.rb +1 -1
- data/lib/missing_codeowners/plugin.rb +1 -1
- data/spec/fixtures/CODEOWNERS +3 -0
- data/spec/missing_codeowners_spec.rb +2 -14
- metadata +2 -4
- data/spec/fixtures/INVALID_CODEOWNERS +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ee614f9e8f6c289b7703b986ab724fa66bb09823f63f0d2958db26bbf314692
|
4
|
+
data.tar.gz: c519cae4557cad087b86f80f42ab4ffb5eb45fef4716e9c52ac4c113bee083a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25313015ad2565b99b1a91b8d3d62b42f193f0a3e62ceac78188f25569c6df22713c9fe50803bfc0f2c75b5cfc9cbe96a5df9261af1d3132d0a6079380b0d430
|
7
|
+
data.tar.gz: 6adaa343ee28ab37dc60a8855f31572d123ec54392d36e308ea7c46fcbd4a59200c1f7ad18dc0b2b69c83f41bc10138fe052d4894d1b7f9ed7b702c22f3f50c2
|
data/Gemfile.lock
CHANGED
@@ -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.
|
137
|
+
elsif components.empty?
|
138
138
|
raise "[ERROR] Invalid CODEOWNERS line: '#{line}'"
|
139
139
|
else
|
140
140
|
pattern = components[0]
|
data/spec/fixtures/CODEOWNERS
CHANGED
@@ -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.
|
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-
|
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
|