fast_code_owners 0.0.5-x86_64-linux → 0.0.7-x86_64-linux

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: 86381dc30a96a29e7f4775e5e94f1a5bd2f47a2b61056c87273d2fbae5df03cb
4
- data.tar.gz: efa8a25bae58a71fbb58e26ff75687c5ab3a99a4691a0961a340dd6e16d8e3cd
3
+ metadata.gz: 6d9b4867388170975280630070112707861811f4339f093f7fe87e7cbfc95a59
4
+ data.tar.gz: 23972e46229cd1742f47f574ab8963cacee299d09e9745d511133ace23035380
5
5
  SHA512:
6
- metadata.gz: edfc022357d86c7458aad77f206cad580ed9cd9fdbb8489b079639b9c1c101882d05b17a2e843b961613c902c7b49889cfefd2a3defa91f22ef536c314162814
7
- data.tar.gz: 4a22867e3dafcd27716da4929cc8cb4ef9488a523862f369d44fb91b73e142c3892084806d887c16f8a54d074ebf8c1f1fb85b12e8dd40af0d02a94e9827f736
6
+ metadata.gz: fca116b7d6634d6170ebb09d3a601145935bd8478cd800ced81f66d6407342496803b78fa91b4994fba5e20e274f7c2f1a1612fc552b86f3dad2655e28fb8225
7
+ data.tar.gz: bf526f8cb8340d8daf755b393a52074505bd996eb5926a5033e5c2b333decd21d40f9eb7083ac169dea1197d97e8e0cff1730fd1b89707f15f089c557d61e157
data/README.md CHANGED
@@ -8,10 +8,6 @@ The [codeowners-rs](https://github.com/rubyatscale/codeowners-rs) CLI is a fast
8
8
 
9
9
  **fast_code_owners** provides Ruby APIs that delegate to codeowners-rs. Much of this code was lifted from [code_ownership](https://github.com/rubyatscale/code_ownership).
10
10
 
11
- ## Dependencies
12
-
13
- - [Rust](https://www.rust-lang.org/tools/install) must be installed and in the PATH
14
-
15
11
  ## Installation
16
12
 
17
13
  ```bash
data/exe/codeowners ADDED
@@ -0,0 +1,79 @@
1
+ #!/usr/bin/env dotslash
2
+
3
+ {
4
+ "name": "codeowners",
5
+ "platforms": {
6
+ "macos-x86_64": {
7
+ "size": 4331528,
8
+ "hash": "blake3",
9
+ "digest": "32bfc7664302bbb52a3130e1207e1b50aa717ebcd03baf3bf166415c98100dde",
10
+ "format": "tar.gz",
11
+ "path": "codeowners",
12
+ "providers": [
13
+ {
14
+ "url": "https://github.com/rubyatscale/codeowners-rs/releases/download/v0.2.4/codeowners-mac.tar.gz"
15
+ },
16
+ {
17
+ "type": "github-release",
18
+ "repo": "https://github.com/rubyatscale/codeowners-rs",
19
+ "tag": "v0.2.4",
20
+ "name": "codeowners-mac.tar.gz"
21
+ }
22
+ ]
23
+ },
24
+ "macos-aarch64": {
25
+ "size": 4331528,
26
+ "hash": "blake3",
27
+ "digest": "32bfc7664302bbb52a3130e1207e1b50aa717ebcd03baf3bf166415c98100dde",
28
+ "format": "tar.gz",
29
+ "path": "codeowners",
30
+ "providers": [
31
+ {
32
+ "url": "https://github.com/rubyatscale/codeowners-rs/releases/download/v0.2.4/codeowners-mac.tar.gz"
33
+ },
34
+ {
35
+ "type": "github-release",
36
+ "repo": "https://github.com/rubyatscale/codeowners-rs",
37
+ "tag": "v0.2.4",
38
+ "name": "codeowners-mac.tar.gz"
39
+ }
40
+ ]
41
+ },
42
+ "linux-x86_64": {
43
+ "size": 18038611,
44
+ "hash": "blake3",
45
+ "digest": "e04e66621efc4c2755b4ef912f5154e9dddafc4a1651bb565fc01465f059d9be",
46
+ "format": "tar.gz",
47
+ "path": "codeowners",
48
+ "providers": [
49
+ {
50
+ "url": "https://github.com/rubyatscale/codeowners-rs/releases/download/v0.2.4/x86_64-unknown-linux-gnu.tar.gz"
51
+ },
52
+ {
53
+ "type": "github-release",
54
+ "repo": "https://github.com/rubyatscale/codeowners-rs",
55
+ "tag": "v0.2.4",
56
+ "name": "x86_64-unknown-linux-gnu.tar.gz"
57
+ }
58
+ ]
59
+ },
60
+ "linux-aarch64": {
61
+ "size": 17411182,
62
+ "hash": "blake3",
63
+ "digest": "f812a66e884e91a5b708b0c0e03149079ef07e2803f0b207a9ca6fad6fe06207",
64
+ "format": "tar.gz",
65
+ "path": "codeowners",
66
+ "providers": [
67
+ {
68
+ "url": "https://github.com/rubyatscale/codeowners-rs/releases/download/v0.2.4/aarch64-unknown-linux-gnu.tar.gz"
69
+ },
70
+ {
71
+ "type": "github-release",
72
+ "repo": "https://github.com/rubyatscale/codeowners-rs",
73
+ "tag": "v0.2.4",
74
+ "name": "aarch64-unknown-linux-gnu.tar.gz"
75
+ }
76
+ ]
77
+ }
78
+ }
79
+ }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FastCodeOwners
4
- VERSION = '0.0.5'
4
+ VERSION = '0.0.7'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_code_owners
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.7
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Perry Hertler
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-05-03 00:00:00.000000000 Z
11
+ date: 2025-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: code_teams
@@ -125,11 +125,13 @@ dependencies:
125
125
  description: A ruby interface that determines file ownership for git repositories
126
126
  email:
127
127
  - perry.hertler@gusto.com
128
- executables: []
128
+ executables:
129
+ - codeowners
129
130
  extensions: []
130
131
  extra_rdoc_files: []
131
132
  files:
132
133
  - README.md
134
+ - exe/codeowners
133
135
  - ext/fast_code_owners/tests/fixtures/valid_project/config/code_ownership.yml
134
136
  - ext/fast_code_owners/tests/fixtures/valid_project/config/teams/bar.yml
135
137
  - ext/fast_code_owners/tests/fixtures/valid_project/config/teams/foo.yml