code_owners 1.0.9 → 2.0.0
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 +5 -5
- data/.github/CODEOWNERS +1 -0
- data/Gemfile.lock +3 -1
- data/README.md +17 -4
- data/bin/code_owners +23 -12
- data/code_owners.gemspec +1 -0
- data/lib/code_owners/version.rb +1 -1
- data/lib/code_owners.rb +143 -47
- data/spec/code_owners_spec.rb +173 -42
- data/spec/files/.dot folder/.silly example.txt +1 -0
- data/spec/files/.dot folder/afoodle.txt +1 -0
- data/spec/files/.dot folder/serious_example.txt +1 -0
- data/spec/files/.gitignore +1 -0
- data/spec/files/foo/bar/bar +1 -0
- data/spec/files/foo/bar/bar.txt +1 -0
- data/spec/files/foo/bar/baz/baz.txt +1 -0
- data/spec/files/foo/bar/baz/baz2.txt +1 -0
- data/spec/files/foo/bar/some bar.txt +1 -0
- data/spec/files/foo/confoozing.txt +1 -0
- data/spec/files/foo/fake_gem.gem +1 -0
- data/spec/files/foo/foo +1 -0
- data/spec/files/foo/foo.txt +1 -0
- data/spec/files/foo/some foo.text +1 -0
- data/spec/generate_permutations.rb +74 -0
- data/spec/permutations.json +2920 -0
- metadata +32 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: code_owners
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Cheatham
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: pathspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
description: utility gem for .github/CODEOWNERS introspection
|
42
56
|
email: coaxis@gmail.com
|
43
57
|
executables:
|
@@ -57,8 +71,24 @@ files:
|
|
57
71
|
- lib/code_owners.rb
|
58
72
|
- lib/code_owners/version.rb
|
59
73
|
- spec/code_owners_spec.rb
|
74
|
+
- spec/files/.dot folder/.silly example.txt
|
75
|
+
- spec/files/.dot folder/afoodle.txt
|
76
|
+
- spec/files/.dot folder/serious_example.txt
|
77
|
+
- spec/files/.gitignore
|
60
78
|
- spec/files/file name.txt
|
79
|
+
- spec/files/foo/bar/bar
|
80
|
+
- spec/files/foo/bar/bar.txt
|
81
|
+
- spec/files/foo/bar/baz/baz.txt
|
82
|
+
- spec/files/foo/bar/baz/baz2.txt
|
83
|
+
- spec/files/foo/bar/some bar.txt
|
84
|
+
- spec/files/foo/confoozing.txt
|
85
|
+
- spec/files/foo/fake_gem.gem
|
86
|
+
- spec/files/foo/foo
|
87
|
+
- spec/files/foo/foo.txt
|
88
|
+
- spec/files/foo/some foo.text
|
61
89
|
- spec/files/☃.txt
|
90
|
+
- spec/generate_permutations.rb
|
91
|
+
- spec/permutations.json
|
62
92
|
homepage: https://github.com/jcheatham/code_owners
|
63
93
|
licenses:
|
64
94
|
- MIT
|
@@ -78,8 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
108
|
- !ruby/object:Gem::Version
|
79
109
|
version: '0'
|
80
110
|
requirements: []
|
81
|
-
|
82
|
-
rubygems_version: 2.6.14.4
|
111
|
+
rubygems_version: 3.3.8
|
83
112
|
signing_key:
|
84
113
|
specification_version: 4
|
85
114
|
summary: ".github/CODEOWNERS introspection utility gem"
|