git-reviewer 0.11.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8a596bd3cbdb0196080be82e7e91fcccaea581ec102c7c2b62a9ca8704b46a2f
4
- data.tar.gz: 3b6b28c51fffbc344cfa3f8e696afe698bd9b1067cfceddf3cd98317945f0d24
3
+ metadata.gz: 2075bf698036a9f95b6abdd537781070e2e9913a3d6ab6fec7eca8a819c3bf99
4
+ data.tar.gz: b77573f8db649b60b38d58ab28d86b08cba8ebdc6ddcf90abacf71cfdc5d81d9
5
5
  SHA512:
6
- metadata.gz: 00de93b877bfd8cde31026a6af94668f2c8e523b351555bf1e5add5e22ff519d873ae8465e1a652ab8b4fd2a23e23928f0a589e0a248cdb23aa3daa18a408c47
7
- data.tar.gz: 762473d6a2797c628ccf7f143b39eecfbb6af7d9985c0ab529669b51efc0f7a1382a710a098575755451bc372c31a9eecec506da1de016061a449a41571cf5a1
6
+ metadata.gz: 8ec65cfcaca3a544e1b067fcaa7cae5cfd29790ccb21ac054b4baf528648a1c7d0db4f376d91affdf095b9907bbb24e5bb8153c19fb7c2c956e54eec38fd4482
7
+ data.tar.gz: e1f3385c97c65a9aced40903a045b1527eda0eaf41545444434f4ed24a04b874fdd2db87ff1372bdc1d2b54e6454f1a7282d0489fd4ecb54080bd8a562346837
@@ -21,7 +21,7 @@ module GitReviewer
21
21
 
22
22
  def self.options
23
23
  [
24
- ['--init', 'Initialize the code review configuration file of the Git repository. It will generate a `gitreviewer.yml` file if needed.'],
24
+ ['--init', 'Initialize the code review configuration file of the Git repository. It will generate a `.gitreviewer.yml` file if needed.'],
25
25
  ['--target', 'The target branch to be analyzed, which is the same as the target branch selected when creating a Merge Request or Pull Request.'],
26
26
  ['--source', 'Optional, if not specified, the default is the current branch pointed to by Git HEAD. The source branch to be analyzed, which is the same as the source branch selected when creating a Merge Request or Pull Request. '],
27
27
  ['--author', 'Only analyze relevant authors involved in code changes.'],
@@ -1,3 +1,3 @@
1
1
  module GitReviewer
2
- VERSION = "0.11.0"
2
+ VERSION = "0.13.0"
3
3
  end
@@ -0,0 +1,44 @@
1
+ .TH GIT-REVIEWER 1 "DATE" "VERSION" "GIT-REVIEWER MANUAL"
2
+ .SH NAME
3
+ git-reviewer \- analyze who should review a Merge Request or Pull Request, and more.
4
+ .SH SYNOPSIS
5
+ .B git-reviewer
6
+ .RI [ options ]
7
+ .SH DESCRIPTION
8
+ .B git-reviewer
9
+ is a git plugin used to analyze who should review a Merge Request or Pull Request,
10
+ and more details related to code modifications.
11
+ .SH OPTIONS
12
+ .TP
13
+ .B \-\-init
14
+ Initialize the code review configuration file of the Git repository.
15
+ It will generate a \`.gitreviewer.yml\` file if needed.
16
+ .TP
17
+ .B \-\-target
18
+ The target branch to be analyzed, which is the same as the target branch selected
19
+ when creating a Merge Request or Pull Request.
20
+ .TP
21
+ .B \-\-source
22
+ Optional, if not specified, the default is the current branch pointed to by Git HEAD.
23
+ The source branch to be analyzed, which is the same as the source branch selected
24
+ when creating a Merge Request or Pull Request.
25
+ .TP
26
+ .B \-\-author
27
+ Only analyze relevant authors involved in code changes.
28
+ .TP
29
+ .B \-\-reviewer
30
+ Only analyze suggested reviewers for code changes.
31
+ .TP
32
+ .B \-\-version
33
+ Show the version of the tool.
34
+ .TP
35
+ .B \-\-verbose
36
+ Show more debugging information.
37
+ .TP
38
+ .B \-\-no-ansi
39
+ Show output without ANSI codes.
40
+ .TP
41
+ .B \-\-help
42
+ Show help banner of specified command.
43
+ .SH AUTHOR
44
+ Written by baochuquan.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-reviewer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - baochuquan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-11 00:00:00.000000000 Z
11
+ date: 2024-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: claide
@@ -39,19 +39,19 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: 3.0.2
41
41
  - !ruby/object:Gem::Dependency
42
- name: nap
42
+ name: claide-plugins
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.1.0
47
+ version: 0.9.2
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 1.1.0
54
+ version: 0.9.2
55
55
  description: Helps you solve the problem of who should review your code.
56
56
  email:
57
57
  - baochuquan@163.com
@@ -76,6 +76,7 @@ files:
76
76
  - lib/gitreviewer/utils/checker.rb
77
77
  - lib/gitreviewer/utils/printer.rb
78
78
  - lib/gitreviewer/version.rb
79
+ - share/git-reviewer.1
79
80
  homepage: https://github.com/baochuquan/git-reviewer
80
81
  licenses: []
81
82
  metadata: