labrat 1.2.3 → 1.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f670030c9b1823ffc3cd869dd6f765294960b52d0102ec197b626c23d1a1eb53
4
- data.tar.gz: 54a962fe1c2756107d0176a833fdc5620fd6742b67552a34aa73efbf1f4f7a61
3
+ metadata.gz: 4176256183f1ade3758c0fcd55ae20002060b8b3650539363cd181af55e60378
4
+ data.tar.gz: 8422fc730d0128911971e2500e3dc7e8b58d502b84889704efa7590ee025aa4e
5
5
  SHA512:
6
- metadata.gz: 79e44478bd2593586dc2922b1aa0bb82ab38cdf9c49644dc1fb9835ed15990031c726bd5e9188289af1fabd81872e19194a9d5119085b89338de5a9705719fad
7
- data.tar.gz: d0b6fe7f577acc010e47769c63c85b59f82c5038851204766bab8e7847f9e9f0e7625575ab9ac376b5217514a311486233e77e8bf1bc6d476ff3b12d0787527e
6
+ metadata.gz: 1a6af154ef18495dc6bea768df4c6e49f32619417204286f4f848c20570c0e55f5f45f771c96a670842411b527d516f18a7b1e07aa9d22978f4e86bf83bac2d9
7
+ data.tar.gz: 10be19c1cbc8456c84de278e37cfabac9fce866aa3230498510239650caecd4aa7ea51dcc6930516aa39637738a4c2f30f55a332e1ee04ecfd8b1e0ee2de015e
data/.gitignore CHANGED
@@ -19,3 +19,5 @@ labrat.pdf
19
19
  /README.pyg
20
20
  /README.tex
21
21
  /label.tex
22
+ *.aux
23
+ /texlabels/auto/
data/.rubocop.yml CHANGED
@@ -1,177 +1,7 @@
1
+ # Inherit the shared config from the rubocop-ddoherty gem (git-hosted on GitHub)
2
+ inherit_gem:
3
+ rubocop-ddoherty: 'config/default.yml'
4
+
1
5
  plugins:
2
6
  - rubocop-rspec
3
7
  - rubocop-performance
4
-
5
- inherit_gem:
6
- rubocop-shopify: rubocop.yml
7
-
8
- AllCops:
9
- NewCops: enable
10
- TargetRubyVersion: 3.1
11
-
12
- Style/DateTime:
13
- Enabled: false
14
-
15
- Style/StringLiteralsInInterpolation:
16
- Enabled: true
17
- EnforcedStyle: single_quotes
18
-
19
- Style/MethodCallWithArgsParentheses:
20
- Enabled: false
21
-
22
- Style/StringLiterals:
23
- Enabled: false
24
-
25
- Style/WordArray:
26
- Enabled: false
27
-
28
- Style/SymbolArray:
29
- Enabled: false
30
-
31
- Style/TrailingCommaInHashLiteral:
32
- Enabled: false
33
-
34
- Style/TrailingCommaInArrayLiteral:
35
- Enabled: false
36
-
37
- Style/HashSyntax:
38
- Enabled: false
39
-
40
- Style/ClassMethodsDefinitions:
41
- Enabled: true
42
- EnforcedStyle: def_self
43
-
44
- Layout/LineLength:
45
- Enabled: true
46
- Max: 120
47
- # To make it possible to copy or click on URIs in the code, we allow lines
48
- # containing a URI to be longer than Max.
49
- AllowHeredoc: true
50
- AllowURI: true
51
- URISchemes:
52
- - http
53
- - https
54
-
55
- Layout/ArgumentAlignment:
56
- Enabled: true
57
- EnforcedStyle: with_first_argument
58
-
59
- Naming/InclusiveLanguage:
60
- Enabled: false
61
-
62
- Metrics/AbcSize:
63
- # The ABC size is a calculated magnitude, so this number can be a Fixnum or
64
- # a Float.
65
- Enabled: false
66
- Max: 50
67
-
68
- Metrics/BlockNesting:
69
- Enabled: false
70
- Max: 3
71
-
72
- Metrics/BlockLength:
73
- Enabled: false
74
- Max: 25
75
-
76
- Metrics/ClassLength:
77
- Enabled: false
78
- CountComments: false # count full line comments?
79
- Max: 100
80
-
81
- Metrics/ModuleLength:
82
- Enabled: false
83
- CountComments: false # count full line comments?
84
- Max: 100
85
-
86
- Metrics/MethodLength:
87
- Enabled: false
88
- CountComments: false # count full line comments?
89
- Max: 10
90
-
91
- # Avoid complex methods.
92
- Metrics/CyclomaticComplexity:
93
- Enabled: false
94
- Max: 20
95
-
96
- Metrics/ParameterLists:
97
- Max: 5
98
- CountKeywordArgs: false
99
-
100
- Metrics/PerceivedComplexity:
101
- Enabled: false
102
- Max: 8
103
-
104
- Layout/MultilineOperationIndentation:
105
- EnforcedStyle: aligned
106
-
107
- Layout/MultilineMethodCallIndentation:
108
- EnforcedStyle: indented_relative_to_receiver
109
- SupportedStyles:
110
- - aligned
111
- - indented
112
- - indented_relative_to_receiver
113
- # By default, the indentation width from Style/IndentationWidth is used
114
- # But it can be overridden by setting this parameter
115
- IndentationWidth: ~
116
-
117
- # Though the style guides recommend against them, I like perl back references.
118
- # They are much more concise than the recommended: $2 vs. Regexp.last_match(2).
119
- # Two characters versus 18!
120
- # Cop supports --auto-correct.
121
- Style/PerlBackrefs:
122
- Enabled: false
123
-
124
- # Cop supports --auto-correct.
125
- # Configuration parameters: EnforcedStyle, SupportedStyles, ProceduralMethods, FunctionalMethods, IgnoredMethods.
126
- # SupportedStyles: line_count_based, semantic, braces_for_chaining
127
- # ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
128
- # FunctionalMethods: let, let!, subject, watch
129
- # IgnoredMethods: lambda, proc, it
130
- Style/BlockDelimiters:
131
- EnforcedStyle: braces_for_chaining
132
- ProceduralMethods: expect
133
-
134
- # Cop supports --auto-correct.
135
- # Configuration parameters: AllowForAlignment, ForceEqualSignAlignment.
136
- Layout/ExtraSpacing:
137
- AllowForAlignment: true
138
-
139
- # Configuration parameters: EnforcedStyle, SupportedStyles.
140
- # SupportedStyles: format, sprintf, percent
141
- Style/FormatString:
142
- Enabled: false
143
-
144
- # Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist.
145
- # NamePrefix: is_, has_, have_
146
- # NamePrefixBlacklist: is_, has_, have_
147
- # NameWhitelist: is_a?
148
- Naming/PredicateName:
149
- AllowedMethods: has_overlaps_within?
150
- Exclude:
151
- - 'spec/**/*'
152
-
153
- # Cop supports --auto-correct.
154
- # Configuration parameters: EnforcedStyle, SupportedStyles.
155
- # SupportedStyles: always, never
156
- Style/FrozenStringLiteralComment:
157
- Enabled: false
158
- EnforcedStyle: always
159
-
160
- # I like using !! to convert a value to boolean.
161
- Style/DoubleNegation:
162
- Enabled: false
163
-
164
- RSpec/MultipleExpectations:
165
- Enabled: false
166
-
167
- RSpec/ExampleLength:
168
- Enabled: false
169
-
170
- RSpec/DescribedClass:
171
- Enabled: false
172
-
173
- RSpec/MultipleMemoizedHelpers:
174
- Max: 10
175
-
176
- RSpec/NestedGroups:
177
- Max: 5
data/.simplecov CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # -*- mode: ruby -*-
2
4
 
3
5
  SimpleCov.start do
data/.yardopts ADDED
@@ -0,0 +1,4 @@
1
+ --markup markdown
2
+ --output-dir doc
3
+ --readme README.md
4
+ lib/**/*.rb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,77 @@
1
- ## [Unreleased]
1
+ - [Version 1.4.0 <span class="timestamp-wrapper"><span class="timestamp">[2025-12-28 Sun]</span></span>](#orgd9bda62)
2
+ - [Version 1.3.0 <span class="timestamp-wrapper"><span class="timestamp">[2025-12-26 Fri]</span></span>](#org30f121f)
3
+ - [Version 1.2.3 <span class="timestamp-wrapper"><span class="timestamp">[2025-03-20 Thu]</span></span>](#org90cce10)
4
+ - [Version 1.2.2 <span class="timestamp-wrapper"><span class="timestamp">[2024-11-29 Fri]</span></span>](#orgfab08de)
5
+ - [Version 1.2.1 <span class="timestamp-wrapper"><span class="timestamp">[2024-09-20 Fri]</span></span>](#org43b5f02)
6
+ - [Version 1.2.0 <span class="timestamp-wrapper"><span class="timestamp">[2023-01-19 Thu]</span></span>](#orgf8928a6)
7
+ - [Version 1.1.0 <span class="timestamp-wrapper"><span class="timestamp">[2023-01-06 Fri]</span></span>](#orgd6ce9e5)
8
+ - [Version 0.1.14 <span class="timestamp-wrapper"><span class="timestamp">[2022-02-03 Thu]</span></span>](#org456e64e)
9
+ - [Version 0.1.13 <span class="timestamp-wrapper"><span class="timestamp">[2021-11-04 Thu]</span></span>](#org87689d9)
2
10
 
3
- ## [0.1.0] - 2021-07-28
4
11
 
5
- - Initial release
12
+ <a id="orgd9bda62"></a>
13
+
14
+ # Version 1.4.0 <span class="timestamp-wrapper"><span class="timestamp">[2025-12-28 Sun]</span></span>
15
+
16
+ - Added a `vim` plugin to allow printing or viewing labels from within a vim buffer as was possible in Emacs with `labrat.el`.
17
+
18
+
19
+ <a id="org30f121f"></a>
20
+
21
+ # Version 1.3.0 <span class="timestamp-wrapper"><span class="timestamp">[2025-12-26 Fri]</span></span>
22
+
23
+ - By default, labrat no longer puts the output file in labrat.pdf; instead, all labels go to `~/.local/share/labrat` and uses the run time for a time-stamp file name.
24
+ - Output file can still be overridden with the `-o` or `--out-file` option
25
+
26
+
27
+ <a id="org90cce10"></a>
28
+
29
+ # Version 1.2.3 <span class="timestamp-wrapper"><span class="timestamp">[2025-03-20 Thu]</span></span>
30
+
31
+ - No user-visible changes
32
+
33
+
34
+ <a id="orgfab08de"></a>
35
+
36
+ # Version 1.2.2 <span class="timestamp-wrapper"><span class="timestamp">[2024-11-29 Fri]</span></span>
37
+
38
+ - Used `fat_config` gem to read config files
39
+
40
+
41
+ <a id="org43b5f02"></a>
42
+
43
+ # Version 1.2.1 <span class="timestamp-wrapper"><span class="timestamp">[2024-09-20 Fri]</span></span>
44
+
45
+ - Fixed `labrat.el` view command
46
+
47
+
48
+ <a id="orgf8928a6"></a>
49
+
50
+ # Version 1.2.0 <span class="timestamp-wrapper"><span class="timestamp">[2023-01-19 Thu]</span></span>
51
+
52
+ - Changed `nlsep` to '~~'
53
+ - Changed `label-sep` to '@@'
54
+ - Minor bug fixes
55
+
56
+
57
+ <a id="orgd6ce9e5"></a>
58
+
59
+ # Version 1.1.0 <span class="timestamp-wrapper"><span class="timestamp">[2023-01-06 Fri]</span></span>
60
+
61
+ - Changed `nl-sep` to '&#x2013;>'
62
+ - Changed `label-sep` to '==>'
63
+ - Added label name to template output
64
+
65
+
66
+ <a id="org456e64e"></a>
67
+
68
+ # Version 0.1.14 <span class="timestamp-wrapper"><span class="timestamp">[2022-02-03 Thu]</span></span>
69
+
70
+ - Nothing important
71
+
72
+
73
+ <a id="org87689d9"></a>
74
+
75
+ # Version 0.1.13 <span class="timestamp-wrapper"><span class="timestamp">[2021-11-04 Thu]</span></span>
76
+
77
+ - Initial release
data/CHANGELOG.org ADDED
@@ -0,0 +1,35 @@
1
+
2
+ * Version 1.4.0 [2025-12-28 Sun]
3
+ - Added a ~vim~ plugin to allow printing or viewing labels from within a vim
4
+ buffer as was possible in Emacs with ~labrat.el~.
5
+
6
+ * Version 1.3.0 [2025-12-26 Fri]
7
+ - By default, labrat no longer puts the output file in labrat.pdf; instead,
8
+ all labels go to =~/.local/share/labrat= and uses the run time for a
9
+ time-stamp file name.
10
+ - Output file can still be overridden with the ~-o~ or ~--out-file~ option
11
+
12
+ * Version 1.2.3 [2025-03-20 Thu]
13
+ - No user-visible changes
14
+
15
+ * Version 1.2.2 [2024-11-29 Fri]
16
+ - Used ~fat_config~ gem to read config files
17
+
18
+ * Version 1.2.1 [2024-09-20 Fri]
19
+ - Fixed ~labrat.el~ view command
20
+
21
+ * Version 1.2.0 [2023-01-19 Thu]
22
+ - Changed =nlsep= to '~~'
23
+ - Changed =label-sep= to '@@'
24
+ - Minor bug fixes
25
+
26
+ * Version 1.1.0 [2023-01-06 Fri]
27
+ - Changed =nl-sep= to '-->'
28
+ - Changed =label-sep= to '==>'
29
+ - Added label name to template output
30
+
31
+ * Version 0.1.14 [2022-02-03 Thu]
32
+ - Nothing important
33
+
34
+ * Version 0.1.13 [2021-11-04 Thu]
35
+ - Initial release
data/Gemfile CHANGED
@@ -7,12 +7,11 @@ gemspec
7
7
 
8
8
  group :development do
9
9
  gem 'debug', '>= 1.0.0'
10
+ gem 'gem_docs', '>=0.3.1'
10
11
  gem 'pry'
11
12
  gem 'rake'
12
13
  gem 'rspec'
13
- gem 'rubocop'
14
- gem 'rubocop-performance'
15
- gem 'rubocop-rspec'
16
- gem 'rubocop-shopify'
14
+ gem 'rubocop', require: false
15
+ gem 'rubocop-ddoherty', git: 'https://github.com/ddoherty03/rubocop-ddoherty.git', branch: 'master', require: false
17
16
  gem 'simplecov'
18
17
  end
data/Gemfile.lock CHANGED
@@ -1,110 +1,127 @@
1
+ GIT
2
+ remote: https://github.com/ddoherty03/rubocop-ddoherty.git
3
+ revision: 6b28e9614f18f94b684179c488acca8ac6cabdc6
4
+ branch: master
5
+ specs:
6
+ rubocop-ddoherty (0.1.2)
7
+ rubocop-performance (~> 1.0)
8
+ rubocop-rake (>= 0.7)
9
+ rubocop-rspec (~> 3.0)
10
+ rubocop-shopify (~> 2.0)
11
+
1
12
  PATH
2
13
  remote: .
3
14
  specs:
4
- labrat (1.2.3)
15
+ labrat (1.4.0)
5
16
  activesupport
6
17
  fat_config (>= 0.4.2)
7
- fat_core
8
- matrix
9
18
  prawn (~> 2.0)
10
19
 
11
20
  GEM
12
21
  remote: https://rubygems.org/
13
22
  specs:
14
- activesupport (8.0.2)
23
+ activesupport (8.1.1)
15
24
  base64
16
- benchmark (>= 0.3)
17
25
  bigdecimal
18
26
  concurrent-ruby (~> 1.0, >= 1.3.1)
19
27
  connection_pool (>= 2.2.5)
20
28
  drb
21
29
  i18n (>= 1.6, < 2)
30
+ json
22
31
  logger (>= 1.4.2)
23
32
  minitest (>= 5.1)
24
33
  securerandom (>= 0.3)
25
34
  tzinfo (~> 2.0, >= 2.0.5)
26
35
  uri (>= 0.13.1)
27
36
  ast (2.4.3)
28
- base64 (0.2.0)
29
- benchmark (0.4.0)
30
- bigdecimal (3.1.9)
37
+ base64 (0.3.0)
38
+ bigdecimal (3.3.1)
31
39
  coderay (1.1.3)
32
- concurrent-ruby (1.3.5)
33
- connection_pool (2.5.0)
40
+ concurrent-ruby (1.3.6)
41
+ connection_pool (3.0.2)
34
42
  damerau-levenshtein (1.3.3)
35
- date (3.4.1)
36
- debug (1.10.0)
43
+ date (3.5.1)
44
+ debug (1.11.1)
37
45
  irb (~> 1.10)
38
46
  reline (>= 0.3.8)
39
- diff-lcs (1.6.0)
47
+ diff-lcs (1.6.2)
40
48
  docile (1.4.1)
41
- drb (2.2.1)
49
+ drb (2.2.3)
50
+ erb (6.0.1)
42
51
  fat_config (0.4.2)
43
52
  activesupport
44
53
  fat_core (>= 5.6.1)
45
54
  inifile
46
55
  tomlib
47
- fat_core (5.6.1)
56
+ fat_core (7.1.3)
48
57
  activesupport
49
58
  damerau-levenshtein
50
59
  ostruct
51
60
  stringio (>= 3.1.2)
52
- i18n (1.14.7)
61
+ gem_docs (0.3.1)
62
+ rake
63
+ yard
64
+ i18n (1.14.8)
53
65
  concurrent-ruby (~> 1.0)
54
66
  inifile (3.0.0)
55
- io-console (0.8.0)
56
- irb (1.15.1)
67
+ io-console (0.8.2)
68
+ irb (1.16.0)
57
69
  pp (>= 0.6.0)
58
70
  rdoc (>= 4.0.0)
59
71
  reline (>= 0.4.2)
60
- json (2.10.2)
61
- language_server-protocol (3.17.0.4)
72
+ json (2.18.0)
73
+ language_server-protocol (3.17.0.5)
62
74
  lint_roller (1.1.0)
63
- logger (1.6.6)
64
- matrix (0.4.2)
75
+ logger (1.7.0)
76
+ matrix (0.4.3)
65
77
  method_source (1.1.0)
66
- minitest (5.25.5)
67
- ostruct (0.6.1)
68
- parallel (1.26.3)
69
- parser (3.3.7.1)
78
+ minitest (6.0.1)
79
+ prism (~> 1.5)
80
+ ostruct (0.6.3)
81
+ parallel (1.27.0)
82
+ parser (3.3.10.0)
70
83
  ast (~> 2.4.1)
71
84
  racc
72
85
  pdf-core (0.10.0)
73
- pp (0.6.2)
86
+ pp (0.6.3)
74
87
  prettyprint
75
88
  prawn (2.5.0)
76
89
  matrix (~> 0.4)
77
90
  pdf-core (~> 0.10.0)
78
91
  ttfunk (~> 1.8)
79
92
  prettyprint (0.2.0)
80
- pry (0.15.2)
93
+ prism (1.7.0)
94
+ pry (0.16.0)
81
95
  coderay (~> 1.1)
82
96
  method_source (~> 1.0)
83
- psych (5.2.3)
97
+ reline (>= 0.6.0)
98
+ psych (5.3.1)
84
99
  date
85
100
  stringio
86
101
  racc (1.8.1)
87
102
  rainbow (3.1.1)
88
- rake (13.2.1)
89
- rdoc (6.12.0)
103
+ rake (13.3.1)
104
+ rdoc (7.0.3)
105
+ erb
90
106
  psych (>= 4.0.0)
91
- regexp_parser (2.10.0)
92
- reline (0.6.0)
107
+ tsort
108
+ regexp_parser (2.11.3)
109
+ reline (0.6.3)
93
110
  io-console (~> 0.5)
94
- rspec (3.13.0)
111
+ rspec (3.13.2)
95
112
  rspec-core (~> 3.13.0)
96
113
  rspec-expectations (~> 3.13.0)
97
114
  rspec-mocks (~> 3.13.0)
98
- rspec-core (3.13.3)
115
+ rspec-core (3.13.6)
99
116
  rspec-support (~> 3.13.0)
100
- rspec-expectations (3.13.3)
117
+ rspec-expectations (3.13.5)
101
118
  diff-lcs (>= 1.2.0, < 2.0)
102
119
  rspec-support (~> 3.13.0)
103
- rspec-mocks (3.13.2)
120
+ rspec-mocks (3.13.7)
104
121
  diff-lcs (>= 1.2.0, < 2.0)
105
122
  rspec-support (~> 3.13.0)
106
- rspec-support (3.13.2)
107
- rubocop (1.74.0)
123
+ rspec-support (3.13.6)
124
+ rubocop (1.82.1)
108
125
  json (~> 2.3)
109
126
  language_server-protocol (~> 3.17.0.2)
110
127
  lint_roller (~> 1.1.0)
@@ -112,19 +129,23 @@ GEM
112
129
  parser (>= 3.3.0.2)
113
130
  rainbow (>= 2.2.2, < 4.0)
114
131
  regexp_parser (>= 2.9.3, < 3.0)
115
- rubocop-ast (>= 1.38.0, < 2.0)
132
+ rubocop-ast (>= 1.48.0, < 2.0)
116
133
  ruby-progressbar (~> 1.7)
117
134
  unicode-display_width (>= 2.4.0, < 4.0)
118
- rubocop-ast (1.40.0)
119
- parser (>= 3.3.1.0)
120
- rubocop-performance (1.24.0)
135
+ rubocop-ast (1.49.0)
136
+ parser (>= 3.3.7.2)
137
+ prism (~> 1.7)
138
+ rubocop-performance (1.26.1)
121
139
  lint_roller (~> 1.1)
122
- rubocop (>= 1.72.1, < 2.0)
123
- rubocop-ast (>= 1.38.0, < 2.0)
124
- rubocop-rspec (3.5.0)
140
+ rubocop (>= 1.75.0, < 2.0)
141
+ rubocop-ast (>= 1.47.1, < 2.0)
142
+ rubocop-rake (0.7.1)
125
143
  lint_roller (~> 1.1)
126
- rubocop (~> 1.72, >= 1.72.1)
127
- rubocop-shopify (2.16.0)
144
+ rubocop (>= 1.72.1)
145
+ rubocop-rspec (3.8.0)
146
+ lint_roller (~> 1.1)
147
+ rubocop (~> 1.81)
148
+ rubocop-shopify (2.18.0)
128
149
  rubocop (~> 1.62)
129
150
  ruby-progressbar (1.13.0)
130
151
  securerandom (0.4.1)
@@ -132,34 +153,109 @@ GEM
132
153
  docile (~> 1.1)
133
154
  simplecov-html (~> 0.11)
134
155
  simplecov_json_formatter (~> 0.1)
135
- simplecov-html (0.13.1)
156
+ simplecov-html (0.13.2)
136
157
  simplecov_json_formatter (0.1.4)
137
- stringio (3.1.5)
158
+ stringio (3.2.0)
138
159
  tomlib (0.7.3)
139
160
  bigdecimal
161
+ tsort (0.2.0)
140
162
  ttfunk (1.8.0)
141
163
  bigdecimal (~> 3.1)
142
164
  tzinfo (2.0.6)
143
165
  concurrent-ruby (~> 1.0)
144
- unicode-display_width (3.1.4)
145
- unicode-emoji (~> 4.0, >= 4.0.4)
146
- unicode-emoji (4.0.4)
147
- uri (1.0.3)
166
+ unicode-display_width (3.2.0)
167
+ unicode-emoji (~> 4.1)
168
+ unicode-emoji (4.2.0)
169
+ uri (1.1.1)
170
+ yard (0.9.38)
148
171
 
149
172
  PLATFORMS
173
+ ruby
150
174
  x86_64-linux
151
175
 
152
176
  DEPENDENCIES
153
177
  debug (>= 1.0.0)
178
+ gem_docs (>= 0.3.1)
154
179
  labrat!
155
180
  pry
156
181
  rake
157
182
  rspec
158
183
  rubocop
159
- rubocop-performance
160
- rubocop-rspec
161
- rubocop-shopify
184
+ rubocop-ddoherty!
162
185
  simplecov
163
186
 
187
+ CHECKSUMS
188
+ activesupport (8.1.1) sha256=5e92534e8d0c8b8b5e6b16789c69dbea65c1d7b752269f71a39422e9546cea67
189
+ ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
190
+ base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
191
+ bigdecimal (3.3.1) sha256=eaa01e228be54c4f9f53bf3cc34fe3d5e845c31963e7fcc5bedb05a4e7d52218
192
+ coderay (1.1.3) sha256=dc530018a4684512f8f38143cd2a096c9f02a1fc2459edcfe534787a7fc77d4b
193
+ concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
194
+ connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
195
+ damerau-levenshtein (1.3.3) sha256=d4320a5fc2aeaa5c023a7c6c45cb4acd4f03a9241c7735c8a7da3eee2ff2407e
196
+ date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
197
+ debug (1.11.1) sha256=2e0b0ac6119f2207a6f8ac7d4a73ca8eb4e440f64da0a3136c30343146e952b6
198
+ diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
199
+ docile (1.4.1) sha256=96159be799bfa73cdb721b840e9802126e4e03dfc26863db73647204c727f21e
200
+ drb (2.2.3) sha256=0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373
201
+ erb (6.0.1) sha256=28ecdd99c5472aebd5674d6061e3c6b0a45c049578b071e5a52c2a7f13c197e5
202
+ fat_config (0.4.2) sha256=5136d00289d0fa12a60897e7e70e931b2465007e0a11ffc7b8e350c470119676
203
+ fat_core (7.1.3) sha256=54aae0da4edcfb77cd2370c46c8a36f792cb0a890069191a47c776c5fce5d367
204
+ gem_docs (0.3.1) sha256=cdd4ec7f65e15e12947f8b8db0d9dea7cc0603c3415c06526263cdab8e32ea65
205
+ i18n (1.14.8) sha256=285778639134865c5e0f6269e0b818256017e8cde89993fdfcbfb64d088824a5
206
+ inifile (3.0.0) sha256=b103eb3655ec93cc626cf2de00950e91f7e69b8398842968e17e1815cfacbfb0
207
+ io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
208
+ irb (1.16.0) sha256=2abe56c9ac947cdcb2f150572904ba798c1e93c890c256f8429981a7675b0806
209
+ json (2.18.0) sha256=b10506aee4183f5cf49e0efc48073d7b75843ce3782c68dbeb763351c08fd505
210
+ labrat (1.4.0)
211
+ language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
212
+ lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
213
+ logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
214
+ matrix (0.4.3) sha256=a0d5ab7ddcc1973ff690ab361b67f359acbb16958d1dc072b8b956a286564c5b
215
+ method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
216
+ minitest (6.0.1) sha256=7854c74f48e2e975969062833adc4013f249a4b212f5e7b9d5c040bf838d54bb
217
+ ostruct (0.6.3) sha256=95a2ed4a4bd1d190784e666b47b2d3f078e4a9efda2fccf18f84ddc6538ed912
218
+ parallel (1.27.0) sha256=4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130
219
+ parser (3.3.10.0) sha256=ce3587fa5cc55a88c4ba5b2b37621b3329aadf5728f9eafa36bbd121462aabd6
220
+ pdf-core (0.10.0) sha256=0a5d101e2063c01e3f941e1ee47cbb97f1adfc1395b58372f4f65f1300f3ce91
221
+ pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
222
+ prawn (2.5.0) sha256=f4e20e3b4f30bf5b9ae37dad15eb421831594553aa930b2391b0fa0a99c43cb6
223
+ prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
224
+ prism (1.7.0) sha256=10062f734bf7985c8424c44fac382ac04a58124ea3d220ec3ba9fe4f2da65103
225
+ pry (0.16.0) sha256=d76c69065698ed1f85e717bd33d7942c38a50868f6b0673c636192b3d1b6054e
226
+ psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
227
+ racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
228
+ rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
229
+ rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
230
+ rdoc (7.0.3) sha256=dfe3d0981d19b7bba71d9dbaeb57c9f4e3a7a4103162148a559c4fc687ea81f9
231
+ regexp_parser (2.11.3) sha256=ca13f381a173b7a93450e53459075c9b76a10433caadcb2f1180f2c741fc55a4
232
+ reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
233
+ rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
234
+ rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
235
+ rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
236
+ rspec-mocks (3.13.7) sha256=0979034e64b1d7a838aaaddf12bf065ea4dc40ef3d4c39f01f93ae2c66c62b1c
237
+ rspec-support (3.13.6) sha256=2e8de3702427eab064c9352fe74488cc12a1bfae887ad8b91cba480ec9f8afb2
238
+ rubocop (1.82.1) sha256=09f1a6a654a960eda767aebea33e47603080f8e9c9a3f019bf9b94c9cab5e273
239
+ rubocop-ast (1.49.0) sha256=49c3676d3123a0923d333e20c6c2dbaaae2d2287b475273fddee0c61da9f71fd
240
+ rubocop-ddoherty (0.1.2)
241
+ rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
242
+ rubocop-rake (0.7.1) sha256=3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d
243
+ rubocop-rspec (3.8.0) sha256=28440dccb3f223a9938ca1f946bd3438275b8c6c156dab909e2cb8bc424cab33
244
+ rubocop-shopify (2.18.0) sha256=dafa25e5617ce4600ff86b1de3d5b78e43ab3d58cc5729df38e492b8e10294eb
245
+ ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
246
+ securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
247
+ simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5
248
+ simplecov-html (0.13.2) sha256=bd0b8e54e7c2d7685927e8d6286466359b6f16b18cb0df47b508e8d73c777246
249
+ simplecov_json_formatter (0.1.4) sha256=529418fbe8de1713ac2b2d612aa3daa56d316975d307244399fa4838c601b428
250
+ stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
251
+ tomlib (0.7.3) sha256=85e562eeaa40b2aca552a13515f41fc6ae9dc522154bc1089c8d3ef94dcebd9b
252
+ tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
253
+ ttfunk (1.8.0) sha256=a7cbc7e489cc46e979dde04d34b5b9e4f5c8f1ee5fc6b1a7be39b829919d20ca
254
+ tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
255
+ unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
256
+ unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
257
+ uri (1.1.1) sha256=379fa58d27ffb1387eaada68c749d1426738bd0f654d812fcc07e7568f5c57c6
258
+ yard (0.9.38) sha256=721fb82afb10532aa49860655f6cc2eaa7130889df291b052e1e6b268283010f
259
+
164
260
  BUNDLED WITH
165
- 2.3.4
261
+ 4.0.3