git-reviewer 0.10.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: aff91ef3ac2760dba23f929186b97ce829b51eb33a3aacf6d627b728fedf1059
4
- data.tar.gz: 9f0ff1692b1343ad0d6b5134bbf85ded765062048a07af0e74fd315e12cdea0c
3
+ metadata.gz: 2075bf698036a9f95b6abdd537781070e2e9913a3d6ab6fec7eca8a819c3bf99
4
+ data.tar.gz: b77573f8db649b60b38d58ab28d86b08cba8ebdc6ddcf90abacf71cfdc5d81d9
5
5
  SHA512:
6
- metadata.gz: 6bb8306e4196958e751c619908c75a2b3eba0c3dfd8cac9b2fe79b78a66db6190313b96c05cdddacb165fe38994563b2577f65ac2be51b4e335b0b1c0efa8362
7
- data.tar.gz: 8ed99d3c51b3a943dd028f315eba60bcc01e094e5fb07e858e5030ffb1b601438c42527c5eea829591ad7cee6ad2df7f7a4913c7ff06e3b2c88388878ec7e44a
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.10.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.10.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
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 3.0.2
41
+ - !ruby/object:Gem::Dependency
42
+ name: claide-plugins
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.9.2
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.9.2
41
55
  description: Helps you solve the problem of who should review your code.
42
56
  email:
43
57
  - baochuquan@163.com
@@ -62,6 +76,7 @@ files:
62
76
  - lib/gitreviewer/utils/checker.rb
63
77
  - lib/gitreviewer/utils/printer.rb
64
78
  - lib/gitreviewer/version.rb
79
+ - share/git-reviewer.1
65
80
  homepage: https://github.com/baochuquan/git-reviewer
66
81
  licenses: []
67
82
  metadata: