git-lint 5.1.1 → 5.2.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: ee879ef7d2e54043b42c8c608a6bcf57869fe7593c65d797f5897dea3208cf18
4
- data.tar.gz: 5aa959f0942970ce6881839d5a9c8d419faaf43bcdd5a0a5feb8e94cd71654f1
3
+ metadata.gz: 588bd293760045f8bffac98557e0b8bd084a8f20113735627c87c843a5ca9c23
4
+ data.tar.gz: 7870c61941155e7665e84c312e44128809dd14f1a4dbf6ef7a8e999c593d405d
5
5
  SHA512:
6
- metadata.gz: '08255c0ed8001b3ebbefb067ccaa94a9319c24146d45c9a39fa9394129e7f72d38c8c5b7df300a5b88e2ffc90f37ed55aba727e07e07e0b8fc1d287caa9313b7'
7
- data.tar.gz: 6e77fd97e3aea400d72072aa35b739760027259913776b54a5b4822b4f836f0d2b7d47a0b2510e0a80a415efe599302bea3f548db0c9d97776a247f51177fd89
6
+ metadata.gz: 9a543e267cdc7ce41b0402b03e7d20b4ae1eb78c4d1f8443c8410cd7496717dfae49b978a2d0f7f25fecc9a048051f197b2b5732f1ca0f71ca64d03e40e6ce36
7
+ data.tar.gz: 2aa9fde18ca69c66a2131652719c33addd4761c48634777581ecb7a4f8a27ce17aa943a7a53f54e4004cce9db44249e7f7c721428a05f529f845015e8305345f
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -2,14 +2,14 @@
2
2
  :toclevels: 5
3
3
  :figure-caption!:
4
4
 
5
- :git_rebase_workflow_link: link:https://www.alchemists.io/articles/git_rebase[Git Rebase Workflow]
5
+ :git_rebase_workflow_link: link:https://alchemists.io/articles/git_rebase[Git Rebase Workflow]
6
6
 
7
7
  = Git Lint
8
8
 
9
9
  Git Lint is a command line interface for linting Git commits by ensuring you maintain a clean, easy
10
10
  to read, debuggable, and maintainable project history. Having a consistent commit history leads to
11
11
  improved code reviews and is a perfect companion to tools like
12
- link:https://www.alchemists.io/projects/milestoner[Milestoner] for versioning and producing
12
+ link:https://alchemists.io/projects/milestoner[Milestoner] for versioning and producing
13
13
  automated release notes of your deploys.
14
14
 
15
15
  toc::[]
@@ -30,7 +30,16 @@ toc::[]
30
30
 
31
31
  == Setup
32
32
 
33
- To install, run:
33
+ To install _with_ security, run:
34
+
35
+ [source,bash]
36
+ ----
37
+ # 💡 Skip this line if you already have the public certificate installed.
38
+ gem cert --add <(curl --compressed --location https://alchemists.io/gems.pem)
39
+ gem install git-lint --trust-policy HighSecurity
40
+ ----
41
+
42
+ To install _without_ security, run:
34
43
 
35
44
  [source,bash]
36
45
  ----
@@ -96,7 +105,7 @@ This gem can be configured via a global configuration:
96
105
  $HOME/.config/git-lint/configuration.yml
97
106
  ....
98
107
 
99
- It can also be configured via link:https://www.alchemists.io/projects/xdg[XDG] environment
108
+ It can also be configured via link:https://alchemists.io/projects/xdg[XDG] environment
100
109
  variables. The default configuration is:
101
110
 
102
111
  [source,yaml]
@@ -587,9 +596,9 @@ In practice, it is quite rare to need a prefix other than what has been detailed
587
596
  _what_ is being committed. These prefixes are not only short and easy to remember but also have the
588
597
  added benefit of categorizing the commits for building release notes, change logs, etc. This becomes
589
598
  handy when coupled with another tool,
590
- link:https://www.alchemists.io/projects/milestoner[Milestoner], for producing consistent project
599
+ link:https://alchemists.io/projects/milestoner[Milestoner], for producing consistent project
591
600
  milestones and Git tag histories. For a deeper dive on subject prefixes and good commit messages in
592
- general, please read about link:https://www.alchemists.io/articles/git_commit_anatomy[commit anatomy
601
+ general, please read about link:https://alchemists.io/articles/git_commit_anatomy[commit anatomy
593
602
  ] to learn more. 🎉
594
603
 
595
604
  Each prefix is delimited by a space which is the default setting but can be customized if desired.
@@ -609,7 +618,7 @@ a Git Hook in order to not disturb interactive rebase workflows.
609
618
 
610
619
  Ensures commit subjects are suffixed consistently. The exclude list _is_ case sensitive and prevents
611
620
  the use of punctuation. This is handy when coupled with a tool, like
612
- link:https://www.alchemists.io/projects/milestoner[Milestoner], which automates project milestone
621
+ link:https://alchemists.io/projects/milestoner[Milestoner], which automates project milestone
613
622
  releases.
614
623
 
615
624
  ==== Commit Trailer Collaborator Capitalization
@@ -1139,7 +1148,7 @@ configuration disabled.
1139
1148
 
1140
1149
  === Tags
1141
1150
 
1142
- * Use tags to denote link:https://www.alchemists.io/projects/milestoner[milestones]/releases:
1151
+ * Use tags to denote link:https://alchemists.io/projects/milestoner[milestones]/releases:
1143
1152
  ** Makes it easier to record milestones and capture associated release notes.
1144
1153
  ** Makes it easier to compare differences between versions.
1145
1154
  ** Provides a starting point for debugging production issues (if any).
@@ -1165,7 +1174,7 @@ configuration disabled.
1165
1174
  === Code Reviews
1166
1175
 
1167
1176
  For an in depth look at how to conduct code reviews, please read my
1168
- link:https://www.alchemists.io/articles/code_reviews[article] on this subject to learn more.
1177
+ link:https://alchemists.io/articles/code_reviews[article] on this subject to learn more.
1169
1178
 
1170
1179
  == Development
1171
1180
 
@@ -1194,19 +1203,19 @@ To test, run:
1194
1203
  bin/rake
1195
1204
  ----
1196
1205
 
1197
- == link:https://www.alchemists.io/policies/license[License]
1206
+ == link:https://alchemists.io/policies/license[License]
1198
1207
 
1199
- == link:https://www.alchemists.io/policies/security[Security]
1208
+ == link:https://alchemists.io/policies/security[Security]
1200
1209
 
1201
- == link:https://www.alchemists.io/policies/code_of_conduct[Code of Conduct]
1210
+ == link:https://alchemists.io/policies/code_of_conduct[Code of Conduct]
1202
1211
 
1203
- == link:https://www.alchemists.io/policies/contributions[Contributions]
1212
+ == link:https://alchemists.io/policies/contributions[Contributions]
1204
1213
 
1205
- == link:https://www.alchemists.io/projects/git-lint/versions[Versions]
1214
+ == link:https://alchemists.io/projects/git-lint/versions[Versions]
1206
1215
 
1207
- == link:https://www.alchemists.io/community[Community]
1216
+ == link:https://alchemists.io/community[Community]
1208
1217
 
1209
1218
  == Credits
1210
1219
 
1211
- * Built with link:https://www.alchemists.io/projects/gemsmith[Gemsmith].
1212
- * Engineered by link:https://www.alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
1220
+ * Built with link:https://alchemists.io/projects/gemsmith[Gemsmith].
1221
+ * Engineered by link:https://alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
data/git-lint.gemspec CHANGED
@@ -2,17 +2,17 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "git-lint"
5
- spec.version = "5.1.1"
5
+ spec.version = "5.2.0"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
- spec.homepage = "https://www.alchemists.io/projects/git-lint"
8
+ spec.homepage = "https://alchemists.io/projects/git-lint"
9
9
  spec.summary = "A command line interface for linting Git commits."
10
10
  spec.license = "Hippocratic-2.1"
11
11
 
12
12
  spec.metadata = {
13
13
  "bug_tracker_uri" => "https://github.com/bkuhlmann/git-lint/issues",
14
- "changelog_uri" => "https://www.alchemists.io/projects/git-lint/versions",
15
- "documentation_uri" => "https://www.alchemists.io/projects/git-lint",
14
+ "changelog_uri" => "https://alchemists.io/projects/git-lint/versions",
15
+ "documentation_uri" => "https://alchemists.io/projects/git-lint",
16
16
  "funding_uri" => "https://github.com/sponsors/bkuhlmann",
17
17
  "label" => "Git Lint",
18
18
  "rubygems_mfa_required" => "true",
@@ -29,10 +29,10 @@ Gem::Specification.new do |spec|
29
29
  spec.add_dependency "dry-monads", "~> 1.6"
30
30
  spec.add_dependency "gitt", "~> 1.1"
31
31
  spec.add_dependency "infusible", "~> 1.0"
32
- spec.add_dependency "pastel", "~> 0.8"
33
32
  spec.add_dependency "refinements", "~> 10.0"
34
33
  spec.add_dependency "runcom", "~> 9.0"
35
34
  spec.add_dependency "spek", "~> 1.0"
35
+ spec.add_dependency "tone", "~> 0.1"
36
36
  spec.add_dependency "zeitwerk", "~> 2.6"
37
37
 
38
38
  spec.bindir = "exe"
@@ -6,6 +6,7 @@ module Git
6
6
  class Analyzer
7
7
  include Import[:configuration]
8
8
 
9
+ # rubocop:todo Metrics/CollectionLiteralLength
9
10
  ANALYZERS = [
10
11
  Analyzers::CommitAuthorCapitalization,
11
12
  Analyzers::CommitAuthorEmail,
@@ -40,6 +41,7 @@ module Git
40
41
  Analyzers::CommitTrailerTrackerKey,
41
42
  Analyzers::CommitTrailerTrackerValue
42
43
  ].freeze
44
+ # rubocop:enable Metrics/CollectionLiteralLength
43
45
 
44
46
  # rubocop:disable Metrics/ParameterLists
45
47
  def initialize(
@@ -4,6 +4,7 @@ require "cogger"
4
4
  require "dry-container"
5
5
  require "gitt"
6
6
  require "spek"
7
+ require "tone"
7
8
 
8
9
  module Git
9
10
  module Lint
@@ -17,6 +18,7 @@ module Git
17
18
  register(:specification) { Spek::Loader.call "#{__dir__}/../../../git-lint.gemspec" }
18
19
  register(:kernel) { Kernel }
19
20
  register(:logger) { Cogger::Client.new }
21
+ register(:color) { Tone.new }
20
22
 
21
23
  namespace :trailers do
22
24
  register(:collaborator) { /\ACo.*Authored.*By.*\Z/i }
@@ -1,17 +1,16 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "pastel"
4
-
5
3
  module Git
6
4
  module Lint
7
5
  module Reporters
8
6
  # Reports issues related to a single branch.
9
7
  class Branch
8
+ include Import[:color]
10
9
  using ::Refinements::Strings
11
10
 
12
- def initialize collector: Collector.new, colorizer: Pastel.new
11
+ def initialize(collector: Collector.new, **)
12
+ super(**)
13
13
  @collector = collector
14
- @colorizer = colorizer
15
14
  end
16
15
 
17
16
  def to_s
@@ -23,7 +22,7 @@ module Git
23
22
 
24
23
  private
25
24
 
26
- attr_reader :collector, :colorizer
25
+ attr_reader :collector
27
26
 
28
27
  def branch_report
29
28
  return "" unless collector.issues?
@@ -46,26 +45,26 @@ module Git
46
45
  if collector.issues?
47
46
  "#{issue_total} detected (#{warning_total}, #{error_total})"
48
47
  else
49
- colorizer.green("0 issues") + " detected"
48
+ color["0 issues", :green] + " detected"
50
49
  end
51
50
  end
52
51
 
53
52
  def issue_total
54
- color = collector.errors? ? :red : :yellow
53
+ style = collector.errors? ? :red : :yellow
55
54
  total = collector.total_issues
56
- colorizer.public_send color, "#{total} issue".pluralize("s", count: total)
55
+ color["#{total} issue".pluralize("s", count: total), style]
57
56
  end
58
57
 
59
58
  def warning_total
60
- color = collector.warnings? ? :yellow : :green
59
+ style = collector.warnings? ? :yellow : :green
61
60
  total = collector.total_warnings
62
- colorizer.public_send color, "#{total} warning".pluralize("s", count: total)
61
+ color["#{total} warning".pluralize("s", count: total), style]
63
62
  end
64
63
 
65
64
  def error_total
66
- color = collector.errors? ? :red : :green
65
+ style = collector.errors? ? :red : :green
67
66
  total = collector.total_errors
68
- colorizer.public_send color, "#{total} error".pluralize("s", count: total)
67
+ color["#{total} error".pluralize("s", count: total), style]
69
68
  end
70
69
  end
71
70
  end
@@ -1,25 +1,25 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "pastel"
4
-
5
3
  module Git
6
4
  module Lint
7
5
  module Reporters
8
6
  # Reports issues related to a single style.
9
7
  class Style
10
- def initialize analyzer, colorizer: Pastel.new
8
+ include Import[:color]
9
+
10
+ def initialize(analyzer, **)
11
+ super(**)
11
12
  @analyzer = analyzer
12
13
  @issue = analyzer.issue
13
- @colorizer = colorizer
14
14
  end
15
15
 
16
- def to_s = colorizer.public_send(color, message)
16
+ def to_s = color[message, style]
17
17
 
18
18
  alias to_str to_s
19
19
 
20
20
  private
21
21
 
22
- attr_reader :analyzer, :issue, :colorizer
22
+ attr_reader :analyzer, :issue
23
23
 
24
24
  def message
25
25
  " #{analyzer.class.label}#{severity_suffix}. " \
@@ -35,7 +35,7 @@ module Git
35
35
  end
36
36
  end
37
37
 
38
- def color
38
+ def style
39
39
  case analyzer.severity
40
40
  when :warn then :yellow
41
41
  when :error then :red
data.tar.gz.sig CHANGED
@@ -1,2 +1,2 @@
1
- f8X�+�������l�l�_*�2���p��q+�\VL炐Q�XSLә9G��(�9���%��U�\xPQo%���gz�����k�����A�{�n[���_�x����T2ᥓ�m�A�v�w�$x{]<;� ��=������K��'ju��j���j��ex�q�ᷚ������������RV��Dt+��1�M�s�� ��n�����2������tҀ
2
- g{��/�b61����v�َ�'%��u,�}�S�
1
+ q�p�t�<�����9@���5���r��PFzv嘞�,
2
+ ��� �"�� �\!�����'��b�>Li�K$v� �|�.̝���h���֫��J��?���d�X9��_�{���Q�y7c��'ދf��c�U���\��5FR��L���/��ZXhY9Y*Լ?���lk����#.���u��l�~3��pS/�K�p �l#&�C�ƃ� ]w9�}��K�܃Z/��L[���O��?9c3�$�4H�/�%�k(YOQ��!,,1pr��Y
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-lint
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1
4
+ version: 5.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -10,25 +10,32 @@ bindir: exe
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- MIIC/jCCAeagAwIBAgIBBTANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDDBpicm9v
14
- a2UvREM9YWxjaGVtaXN0cy9EQz1pbzAeFw0yMjAzMTkxNzI0MzJaFw0yMzAzMTkx
15
- NzI0MzJaMCUxIzAhBgNVBAMMGmJyb29rZS9EQz1hbGNoZW1pc3RzL0RDPWlvMIIB
16
- IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6l1qpXTiomH1RfMRloyw7MiE
17
- xyVx/x8Yc3EupdH7uhNaTXQGyORN6aOY//1QXXMHIZ9tW74nZLhesWMSUMYy0XhB
18
- brs+KkurHnc9FnEJAbG7ebGvl/ncqZt72nQvaxpDxvuCBHgJAz+8i5wl6FhLw+oT
19
- 9z0A8KcGhz67SdcoQiD7qiCjL/2NTeWHOzkpPrdGlt088+VerEEGf5I13QCvaftP
20
- D5vkU0YlAm1r98BymuJlcQ1qdkVEI1d48ph4kcS0S0nv1RiuyVb6TCAR3Nu3VaVq
21
- 3fPzZKJLZBx67UvXdbdicWPiUR75elI4PXpLIic3xytaF52ZJYyKZCNZJhNwfQID
22
- AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU0nzow9vc
23
- 2CdikiiE3fJhP/gY4ggwDQYJKoZIhvcNAQELBQADggEBAJbbNyWzFjqUNVPPCUCo
24
- IMrhDa9xf1xkORXNYYbmXgoxRy/KyNbUr+jgEEoWJAm9GXlcqxxWAUI6pK/i4/Qi
25
- X6rPFEFmeObDOHNvuqy8Hd6AYsu+kP94U/KJhe9wnWGMmGoNKJNU3EkW3jM/osSl
26
- +JRxiH5t4WtnDiVyoYl5nYC02rYdjJkG6VMxDymXTqn7u6HhYgZkGujq1UPar8x2
27
- hNIWJblDKKSu7hA2d6+kUthuYo13o1sg1Da/AEDg0hoZSUvhqDEF5Hy232qb3pDt
28
- CxDe2+VuChj4I1nvIHdu+E6XoEVlanUPKmSg6nddhkKn2gC45Kyzh6FZqnzH/CRp
29
- RFE=
13
+ MIIEeDCCAuCgAwIBAgIBATANBgkqhkiG9w0BAQsFADBBMQ8wDQYDVQQDDAZicm9v
14
+ a2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQBGRYC
15
+ aW8wHhcNMjMwMzIyMTYxNDQxWhcNMjUwMzIxMTYxNDQxWjBBMQ8wDQYDVQQDDAZi
16
+ cm9va2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQB
17
+ GRYCaW8wggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCro8tj5/E1Hg88
18
+ f4qfiwPVd2zJQHvdYt4GHVvuHRRgx4HGhJuNp+4BId08RBn7V6V1MW6MY3kezRBs
19
+ M+7QOQ4b1xNLTvY7FYQB1wGK5a4x7TTokDrPYQxDB2jmsdDYCzVbIMrAvUfcecRi
20
+ khyGZCdByiiCl4fKv77P12tTT+NfsvXkLt/AYCGwjOUyGKTQ01Z6eC09T27GayPH
21
+ QQvIkakyFgcJtzSyGzs8bzK5q9u7wQ12MNTjJoXzW69lqp0oNvDylu81EiSUb5S6
22
+ QzzPxZBiRB1sgtbt1gUbVI262ZDq1gR+HxPFmp+Cgt7ZLIJZAtesQvtcMzseXpfn
23
+ hpmm0Sw22KGhRAy/mqHBRhDl5HqS1SJp2Ko3lcnpXeFResp0HNlt8NSu13vhC08j
24
+ GUHU9MyIXbFOsnp3K3ADrAVjPWop8EZkmUR3MV/CUm00w2cZHCSGiXl1KMpiVKvk
25
+ Ywr1gd2ZME4QLSo+EXUtLxDUa/W3xnBS8dBOuMMz02FPWYr3PN8CAwEAAaN7MHkw
26
+ CQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFAFgmv0tYMZnItuPycSM
27
+ F5wykJEVMB8GA1UdEQQYMBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMB8GA1UdEgQY
28
+ MBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMA0GCSqGSIb3DQEBCwUAA4IBgQAX+EGY
29
+ 9RLYGxF1VLZz+G1ACQc4uyrCB6kXwI06kzUa5dF9tPXqTX9ffnz3/W8ck2IQhKzu
30
+ MKO2FVijzbDWTsZeZGglS4E+4Jxpau1lU9HhOIcKolv6LeC6UdALTFudY+GLb8Xw
31
+ REXgaJkjzzhkUSILmEnRwEbY08dVSl7ZAaxVI679vfI2yapLlIwpbBgmQTiTvPr3
32
+ qyyLUno9flYEOv9fmGHunSrM+gE0/0niGTXa5GgXBXYGS2he4LQGgSBfGp/cTwMU
33
+ rDKJRcusZ12lNBeDfgqACz/BBJF8FLodgk6rGMRZz7+ZmjjHEmpG5bQpR6Q2BuWL
34
+ XMtYk/QzaWuhiR7pWjiF8jbdd7RO6or0ohq7iFkokz/5xrtQ/vPzU2RQ3Qc6YaKw
35
+ 3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
36
+ gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
30
37
  -----END CERTIFICATE-----
31
- date: 2023-02-05 00:00:00.000000000 Z
38
+ date: 2023-04-10 00:00:00.000000000 Z
32
39
  dependencies:
33
40
  - !ruby/object:Gem::Dependency
34
41
  name: cogger
@@ -115,61 +122,61 @@ dependencies:
115
122
  - !ruby/object:Gem::Version
116
123
  version: '1.0'
117
124
  - !ruby/object:Gem::Dependency
118
- name: pastel
125
+ name: refinements
119
126
  requirement: !ruby/object:Gem::Requirement
120
127
  requirements:
121
128
  - - "~>"
122
129
  - !ruby/object:Gem::Version
123
- version: '0.8'
130
+ version: '10.0'
124
131
  type: :runtime
125
132
  prerelease: false
126
133
  version_requirements: !ruby/object:Gem::Requirement
127
134
  requirements:
128
135
  - - "~>"
129
136
  - !ruby/object:Gem::Version
130
- version: '0.8'
137
+ version: '10.0'
131
138
  - !ruby/object:Gem::Dependency
132
- name: refinements
139
+ name: runcom
133
140
  requirement: !ruby/object:Gem::Requirement
134
141
  requirements:
135
142
  - - "~>"
136
143
  - !ruby/object:Gem::Version
137
- version: '10.0'
144
+ version: '9.0'
138
145
  type: :runtime
139
146
  prerelease: false
140
147
  version_requirements: !ruby/object:Gem::Requirement
141
148
  requirements:
142
149
  - - "~>"
143
150
  - !ruby/object:Gem::Version
144
- version: '10.0'
151
+ version: '9.0'
145
152
  - !ruby/object:Gem::Dependency
146
- name: runcom
153
+ name: spek
147
154
  requirement: !ruby/object:Gem::Requirement
148
155
  requirements:
149
156
  - - "~>"
150
157
  - !ruby/object:Gem::Version
151
- version: '9.0'
158
+ version: '1.0'
152
159
  type: :runtime
153
160
  prerelease: false
154
161
  version_requirements: !ruby/object:Gem::Requirement
155
162
  requirements:
156
163
  - - "~>"
157
164
  - !ruby/object:Gem::Version
158
- version: '9.0'
165
+ version: '1.0'
159
166
  - !ruby/object:Gem::Dependency
160
- name: spek
167
+ name: tone
161
168
  requirement: !ruby/object:Gem::Requirement
162
169
  requirements:
163
170
  - - "~>"
164
171
  - !ruby/object:Gem::Version
165
- version: '1.0'
172
+ version: '0.1'
166
173
  type: :runtime
167
174
  prerelease: false
168
175
  version_requirements: !ruby/object:Gem::Requirement
169
176
  requirements:
170
177
  - - "~>"
171
178
  - !ruby/object:Gem::Version
172
- version: '1.0'
179
+ version: '0.1'
173
180
  - !ruby/object:Gem::Dependency
174
181
  name: zeitwerk
175
182
  requirement: !ruby/object:Gem::Requirement
@@ -271,13 +278,13 @@ files:
271
278
  - lib/git/lint/validators/capitalization.rb
272
279
  - lib/git/lint/validators/email.rb
273
280
  - lib/git/lint/validators/name.rb
274
- homepage: https://www.alchemists.io/projects/git-lint
281
+ homepage: https://alchemists.io/projects/git-lint
275
282
  licenses:
276
283
  - Hippocratic-2.1
277
284
  metadata:
278
285
  bug_tracker_uri: https://github.com/bkuhlmann/git-lint/issues
279
- changelog_uri: https://www.alchemists.io/projects/git-lint/versions
280
- documentation_uri: https://www.alchemists.io/projects/git-lint
286
+ changelog_uri: https://alchemists.io/projects/git-lint/versions
287
+ documentation_uri: https://alchemists.io/projects/git-lint
281
288
  funding_uri: https://github.com/sponsors/bkuhlmann
282
289
  label: Git Lint
283
290
  rubygems_mfa_required: 'true'
@@ -297,7 +304,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
297
304
  - !ruby/object:Gem::Version
298
305
  version: '0'
299
306
  requirements: []
300
- rubygems_version: 3.4.6
307
+ rubygems_version: 3.4.10
301
308
  signing_key:
302
309
  specification_version: 4
303
310
  summary: A command line interface for linting Git commits.
metadata.gz.sig CHANGED
Binary file