gitt 1.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.
metadata ADDED
@@ -0,0 +1,144 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gitt
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Brooke Kuhlmann
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
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=
30
+ -----END CERTIFICATE-----
31
+ date: 2022-12-25 00:00:00.000000000 Z
32
+ dependencies:
33
+ - !ruby/object:Gem::Dependency
34
+ name: dry-monads
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.6'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.6'
47
+ - !ruby/object:Gem::Dependency
48
+ name: refinements
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '10.0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '10.0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: zeitwerk
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '2.6'
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '2.6'
75
+ description:
76
+ email:
77
+ - brooke@alchemists.io
78
+ executables: []
79
+ extensions: []
80
+ extra_rdoc_files:
81
+ - README.adoc
82
+ - LICENSE.adoc
83
+ files:
84
+ - LICENSE.adoc
85
+ - README.adoc
86
+ - gitt.gemspec
87
+ - lib/gitt.rb
88
+ - lib/gitt/commands/branch.rb
89
+ - lib/gitt/commands/config.rb
90
+ - lib/gitt/commands/log.rb
91
+ - lib/gitt/commands/tag.rb
92
+ - lib/gitt/models/commit.rb
93
+ - lib/gitt/models/person.rb
94
+ - lib/gitt/models/tag.rb
95
+ - lib/gitt/models/trailer.rb
96
+ - lib/gitt/parsers/attributer.rb
97
+ - lib/gitt/parsers/commit.rb
98
+ - lib/gitt/parsers/person.rb
99
+ - lib/gitt/parsers/tag.rb
100
+ - lib/gitt/parsers/trailer.rb
101
+ - lib/gitt/repository.rb
102
+ - lib/gitt/sanitizers/container.rb
103
+ - lib/gitt/sanitizers/date.rb
104
+ - lib/gitt/sanitizers/email.rb
105
+ - lib/gitt/sanitizers/lines.rb
106
+ - lib/gitt/sanitizers/paragraphs.rb
107
+ - lib/gitt/sanitizers/scissors.rb
108
+ - lib/gitt/sanitizers/signature.rb
109
+ - lib/gitt/sanitizers/trailers.rb
110
+ - lib/gitt/shared_contexts/git_commit.rb
111
+ - lib/gitt/shared_contexts/git_repo.rb
112
+ - lib/gitt/shared_contexts/temp_dir.rb
113
+ - lib/gitt/shell.rb
114
+ homepage: https://www.alchemists.io/projects/gitt
115
+ licenses:
116
+ - Hippocratic-2.1
117
+ metadata:
118
+ bug_tracker_uri: https://github.com/bkuhlmann/gitt/issues
119
+ changelog_uri: https://www.alchemists.io/projects/gitt/versions
120
+ documentation_uri: https://www.alchemists.io/projects/gitt
121
+ funding_uri: https://github.com/sponsors/bkuhlmann
122
+ label: Gitt
123
+ rubygems_mfa_required: 'true'
124
+ source_code_uri: https://github.com/bkuhlmann/gitt
125
+ post_install_message:
126
+ rdoc_options: []
127
+ require_paths:
128
+ - lib
129
+ required_ruby_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - "~>"
132
+ - !ruby/object:Gem::Version
133
+ version: '3.2'
134
+ required_rubygems_version: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ requirements: []
140
+ rubygems_version: 3.4.1
141
+ signing_key:
142
+ specification_version: 4
143
+ summary: Provides a monadic Object API wrapper around the Git CLI.
144
+ test_files: []
metadata.gz.sig ADDED
Binary file