cased-ruby 0.7.1 → 0.8.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: 821d33f3772c80fcd9975785011cf293953df05a177e1a226210266a36355210
4
- data.tar.gz: 69ce4aaad4b5309eddbce8aa6399a3174237f60af97787ca06101528b2234756
3
+ metadata.gz: fd45f7bdff0afe69057ba6b258a2528a878766bef20afe2b1ef0c9dae29c642f
4
+ data.tar.gz: f54d43835dde7779b4b45de672366dce5364096ad5b36c9fcc0b96b8efc6a763
5
5
  SHA512:
6
- metadata.gz: ba9ec0651bb2930c8b5d38f619b8fa3a8389a954a92f380d0416cf78bd44222d68cfd387deb42edd90f09baee3d1853333ad37c50ae4dfeb64d7951f0e84f51c
7
- data.tar.gz: c7b423d725c6b25742ed8760133061a892cae1586991dc770499010eb3135389a2857f698e7b968565d867c77e4f94f325dd5df248dbd2151e1c2f82972dfc9b
6
+ metadata.gz: 68930a50515a51dc5af4ea403c857ee412f7dce1aef3e6b1c485f7b436f113360c4d097dc57bc7c2ad984ada4e3a38d6619ae5d1059244c4620844c6e037f27b
7
+ data.tar.gz: 8b11571ca5c97ce9141e9828ac264949cdb254625ff722c07617fb2d5103fe0499cd5543b2e7707be2b04e3eac3ae84b4d0f1ed8f4475cd37765b2bb1db2cf4d
@@ -8,14 +8,14 @@ jobs:
8
8
  runs-on: ubuntu-latest
9
9
 
10
10
  steps:
11
- - uses: actions/checkout@v2
11
+ - uses: actions/checkout@v3
12
12
 
13
- - uses: actions/setup-ruby@v1
13
+ - uses: ruby/setup-ruby@v1
14
14
  with:
15
- ruby-version: 2.7
15
+ ruby-version: 3.1
16
+ bundler-cache: false
16
17
 
17
18
  - name: Install dependencies
18
- run: |
19
- gem install bundler -v 2.3.16
20
- bundle install --local
19
+ run: bundle install
20
+
21
21
  - run: bin/rubocop
@@ -11,30 +11,19 @@ jobs:
11
11
  ruby:
12
12
  - "2.7"
13
13
  - "3.0"
14
- lockfile:
15
- - "Gemfile.lock"
16
- - "Gemfile-activesupport-7.lock"
17
- exclude:
18
- - ruby: "2.5"
19
- lockfile: "Gemfile-activesupport-7.lock"
20
- - ruby: "2.6"
21
- lockfile: "Gemfile-activesupport-7.lock"
14
+ - "3.1"
22
15
 
23
- name: Ruby ${{ matrix.ruby }} Gem lockfile ${{ matrix.lockfile }} test
16
+ name: Ruby ${{ matrix.ruby }} test
24
17
  steps:
25
- - uses: actions/checkout@v2
18
+ - uses: actions/checkout@v3
26
19
 
27
- - uses: actions/setup-ruby@v1
20
+ - uses: ruby/setup-ruby@v1
28
21
  with:
29
22
  ruby-version: ${{ matrix.ruby }}
30
-
31
- - name: Override Gemfile.lock to test multiple gem dependencies
32
- run: cp -f gemfile-locks/${{ matrix.lockfile }} Gemfile.lock
23
+ bundler-cache: false
33
24
 
34
25
  - name: Install dependencies
35
- run: |
36
- gem install bundler
37
- bundle install --local
26
+ run: bundle install
38
27
 
39
28
  - name: Run Tests
40
29
  run: |
data/.rubocop.yml CHANGED
@@ -88,3 +88,92 @@ Layout/MultilineMethodCallIndentation:
88
88
 
89
89
  Layout/CaseIndentation:
90
90
  Enabled: false
91
+
92
+ Layout/LineEndStringConcatenationIndentation: # new in 1.18
93
+ Enabled: false
94
+ Layout/SpaceBeforeBrackets: # new in 1.7
95
+ Enabled: false
96
+ Lint/AmbiguousAssignment: # new in 1.7
97
+ Enabled: false
98
+ Lint/AmbiguousRange: # new in 1.19
99
+ Enabled: false
100
+ Lint/DeprecatedConstants: # new in 1.8
101
+ Enabled: false
102
+ Lint/DuplicateBranch: # new in 1.3
103
+ Enabled: false
104
+ Lint/DuplicateRegexpCharacterClassElement: # new in 1.1
105
+ Enabled: false
106
+ Lint/EmptyBlock: # new in 1.1
107
+ Enabled: false
108
+ Lint/EmptyInPattern: # new in 1.16
109
+ Enabled: false
110
+ Lint/LambdaWithoutLiteralBlock: # new in 1.8
111
+ Enabled: false
112
+ Lint/NoReturnInBeginEndBlocks: # new in 1.2
113
+ Enabled: false
114
+ Lint/NumberedParameterAssignment: # new in 1.9
115
+ Enabled: false
116
+ Lint/OrAssignmentToConstant: # new in 1.9
117
+ Enabled: false
118
+ Lint/RedundantDirGlobSort: # new in 1.8
119
+ Enabled: false
120
+ Lint/SymbolConversion: # new in 1.9
121
+ Enabled: false
122
+ Lint/ToEnumArguments: # new in 1.1
123
+ Enabled: false
124
+ Lint/TripleQuotes: # new in 1.9
125
+ Enabled: false
126
+ Lint/UnexpectedBlockArity: # new in 1.5
127
+ Enabled: false
128
+ Lint/UnmodifiedReduceAccumulator: # new in 1.1
129
+ Enabled: false
130
+ Style/ArgumentsForwarding: # new in 1.1
131
+ Enabled: false
132
+ Style/CollectionCompact: # new in 1.2
133
+ Enabled: false
134
+ Style/DocumentDynamicEvalDefinition: # new in 1.1
135
+ Enabled: false
136
+ Style/EndlessMethod: # new in 1.8
137
+ Enabled: false
138
+ Style/HashConversion: # new in 1.10
139
+ Enabled: false
140
+ Style/HashExcept: # new in 1.7
141
+ Enabled: false
142
+ Style/IfWithBooleanLiteralBranches: # new in 1.9
143
+ Enabled: false
144
+ Style/InPatternThen: # new in 1.16
145
+ Enabled: false
146
+ Style/MultilineInPatternThen: # new in 1.16
147
+ Enabled: false
148
+ Style/QuotedSymbols: # new in 1.16
149
+ Enabled: false
150
+ Style/RedundantArgument: # new in 1.4
151
+ Enabled: false
152
+ Style/RedundantSelfAssignmentBranch: # new in 1.19
153
+ Enabled: false
154
+ Style/StringChars: # new in 1.12
155
+ Enabled: false
156
+ Style/SwapValues: # new in 1.1
157
+ Enabled: false
158
+ Style/GlobalStdStream:
159
+ Enabled: false
160
+ Style/HashSyntax:
161
+ Enabled: false
162
+ Style/AccessorGrouping:
163
+ Enabled: false
164
+ Style/KeywordParametersOrder:
165
+ Enabled: false
166
+ Lint/MissingSuper:
167
+ Enabled: false
168
+ Gemspec/RequiredRubyVersion:
169
+ Enabled: false
170
+ Gemspec/DateAssignment: # new in 1.10
171
+ Enabled: false
172
+ Lint/EmptyClass: # new in 1.3
173
+ Enabled: false
174
+ Naming/InclusiveLanguage: # new in 1.18
175
+ Enabled: false
176
+ Style/NegatedIfElseCondition: # new in 1.2
177
+ Enabled: false
178
+ Style/NilLambda: # new in 1.3
179
+ Enabled: false
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.1
1
+ 3.1.3
data/Gemfile.lock CHANGED
@@ -1,12 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cased-ruby (0.7.1)
4
+ cased-ruby (0.8.0)
5
5
  activesupport (>= 6.1, < 7.1)
6
6
  dotpath (~> 0.1.0)
7
7
  faraday (~> 2.0)
8
8
  json (~> 2.5.1)
9
- jwt (~> 2.2.3)
9
+ jwt (~> 2.7.1)
10
10
  net-http-persistent (~> 4.0.1)
11
11
  subprocess (~> 1.5.5)
12
12
  tty-prompt (~> 0.23.1)
@@ -19,6 +19,7 @@ GEM
19
19
  i18n (>= 1.6, < 2)
20
20
  minitest (>= 5.1)
21
21
  tzinfo (~> 2.0)
22
+ zeitwerk (~> 2.3)
22
23
  addressable (2.8.0)
23
24
  public_suffix (>= 2.0.2, < 5.0)
24
25
  ast (2.4.2)
@@ -37,7 +38,7 @@ GEM
37
38
  i18n (1.12.0)
38
39
  concurrent-ruby (~> 1.0)
39
40
  json (2.5.1)
40
- jwt (2.2.3)
41
+ jwt (2.7.1)
41
42
  minitest (5.14.4)
42
43
  mocha (1.13.0)
43
44
  net-http-persistent (4.0.1)
@@ -101,12 +102,13 @@ GEM
101
102
  hashdiff (>= 0.4.0, < 2.0.0)
102
103
  wisper (2.0.1)
103
104
  yard (0.9.26)
105
+ zeitwerk (2.6.8)
104
106
 
105
107
  PLATFORMS
106
108
  ruby
107
109
 
108
110
  DEPENDENCIES
109
- bundler (~> 2.3.16)
111
+ bundler (~> 2.4.15)
110
112
  byebug (~> 11.1.3)
111
113
  cased-ruby!
112
114
  minitest (~> 5.14.4)
@@ -121,4 +123,4 @@ DEPENDENCIES
121
123
  yard (~> 0.9.26)
122
124
 
123
125
  BUNDLED WITH
124
- 2.3.16
126
+ 2.4.15
data/cased-ruby.gemspec CHANGED
@@ -33,11 +33,11 @@ Gem::Specification.new do |spec|
33
33
  spec.add_dependency 'dotpath', '~> 0.1.0'
34
34
  spec.add_dependency 'faraday', '~> 2.0'
35
35
  spec.add_dependency 'json', '~> 2.5.1'
36
- spec.add_dependency 'jwt', '~> 2.2.3'
36
+ spec.add_dependency 'jwt', '~> 2.7.1'
37
37
  spec.add_dependency 'net-http-persistent', '~> 4.0.1'
38
38
  spec.add_dependency 'subprocess', '~> 1.5.5'
39
39
  spec.add_dependency 'tty-prompt', '~> 0.23.1'
40
- spec.add_development_dependency 'bundler', '~> 2.3.16'
40
+ spec.add_development_dependency 'bundler', '~> 2.4.15'
41
41
  spec.add_development_dependency 'byebug', '~> 11.1.3'
42
42
  spec.add_development_dependency 'minitest', '~> 5.14.4'
43
43
  spec.add_development_dependency 'mocha', '~> 1.13.0'
@@ -1,13 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cased-ruby (0.5.2)
4
+ cased-ruby (0.7.1)
5
5
  activesupport (>= 6.1, < 7.1)
6
6
  dotpath (~> 0.1.0)
7
- faraday (~> 1.7.1)
8
- faraday_middleware (~> 1.1.0)
7
+ faraday (~> 2.0)
9
8
  json (~> 2.5.1)
10
- jwt (~> 2.2.3)
9
+ jwt (~> 2.7.1)
11
10
  net-http-persistent (~> 4.0.1)
12
11
  subprocess (~> 1.5.5)
13
12
  tty-prompt (~> 0.23.1)
@@ -15,7 +14,7 @@ PATH
15
14
  GEM
16
15
  remote: https://rubygems.org/
17
16
  specs:
18
- activesupport (7.0.2.3)
17
+ activesupport (7.0.3.1)
19
18
  concurrent-ruby (~> 1.0, >= 1.0.2)
20
19
  i18n (>= 1.6, < 2)
21
20
  minitest (>= 5.1)
@@ -24,41 +23,23 @@ GEM
24
23
  public_suffix (>= 2.0.2, < 5.0)
25
24
  ast (2.4.2)
26
25
  byebug (11.1.3)
27
- concurrent-ruby (1.1.9)
26
+ concurrent-ruby (1.1.10)
28
27
  connection_pool (2.2.5)
29
28
  crack (0.4.5)
30
29
  rexml
31
30
  docile (1.4.0)
32
31
  dotpath (0.1.0)
33
- faraday (1.7.2)
34
- faraday-em_http (~> 1.0)
35
- faraday-em_synchrony (~> 1.0)
36
- faraday-excon (~> 1.1)
37
- faraday-httpclient (~> 1.0.1)
38
- faraday-net_http (~> 1.0)
39
- faraday-net_http_persistent (~> 1.1)
40
- faraday-patron (~> 1.0)
41
- faraday-rack (~> 1.0)
42
- multipart-post (>= 1.2, < 3)
32
+ faraday (2.3.0)
33
+ faraday-net_http (~> 2.0)
43
34
  ruby2_keywords (>= 0.0.4)
44
- faraday-em_http (1.0.0)
45
- faraday-em_synchrony (1.0.0)
46
- faraday-excon (1.1.0)
47
- faraday-httpclient (1.0.1)
48
- faraday-net_http (1.0.1)
49
- faraday-net_http_persistent (1.2.0)
50
- faraday-patron (1.0.0)
51
- faraday-rack (1.0.0)
52
- faraday_middleware (1.1.0)
53
- faraday (~> 1.0)
35
+ faraday-net_http (2.0.3)
54
36
  hashdiff (1.0.1)
55
- i18n (1.10.0)
37
+ i18n (1.12.0)
56
38
  concurrent-ruby (~> 1.0)
57
39
  json (2.5.1)
58
- jwt (2.2.3)
40
+ jwt (2.7.1)
59
41
  minitest (5.14.4)
60
42
  mocha (1.13.0)
61
- multipart-post (2.1.1)
62
43
  net-http-persistent (4.0.1)
63
44
  connection_pool (~> 2.2)
64
45
  parallel (1.20.1)
@@ -100,7 +81,7 @@ GEM
100
81
  docile (~> 1.1)
101
82
  simplecov-html (~> 0.11)
102
83
  simplecov-html (0.12.3)
103
- subprocess (1.5.5)
84
+ subprocess (1.5.6)
104
85
  tty-color (0.6.0)
105
86
  tty-cursor (0.7.1)
106
87
  tty-prompt (0.23.1)
@@ -111,7 +92,7 @@ GEM
111
92
  tty-screen (~> 0.8)
112
93
  wisper (~> 2.0)
113
94
  tty-screen (0.8.1)
114
- tzinfo (2.0.4)
95
+ tzinfo (2.0.5)
115
96
  concurrent-ruby (~> 1.0)
116
97
  unicode-display_width (2.0.0)
117
98
  webmock (3.14.0)
@@ -125,7 +106,7 @@ PLATFORMS
125
106
  ruby
126
107
 
127
108
  DEPENDENCIES
128
- bundler (= 2.2.27)
109
+ bundler (~> 2.4.15)
129
110
  byebug (~> 11.1.3)
130
111
  cased-ruby!
131
112
  minitest (~> 5.14.4)
@@ -140,4 +121,4 @@ DEPENDENCIES
140
121
  yard (~> 0.9.26)
141
122
 
142
123
  BUNDLED WITH
143
- 2.2.27
124
+ 2.4.15
@@ -1,13 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cased-ruby (0.5.2)
5
- activesupport (>= 6.1, < 7.1)
4
+ cased-ruby (0.7.1)
5
+ activesupport (= 6.1.4.4)
6
6
  dotpath (~> 0.1.0)
7
- faraday (~> 1.7.1)
8
- faraday_middleware (~> 1.1.0)
7
+ faraday (~> 2.0)
9
8
  json (~> 2.5.1)
10
- jwt (~> 2.2.3)
9
+ jwt (~> 2.7.1)
11
10
  net-http-persistent (~> 4.0.1)
12
11
  subprocess (~> 1.5.5)
13
12
  tty-prompt (~> 0.23.1)
@@ -25,41 +24,23 @@ GEM
25
24
  public_suffix (>= 2.0.2, < 5.0)
26
25
  ast (2.4.2)
27
26
  byebug (11.1.3)
28
- concurrent-ruby (1.1.9)
27
+ concurrent-ruby (1.1.10)
29
28
  connection_pool (2.2.5)
30
29
  crack (0.4.5)
31
30
  rexml
32
31
  docile (1.4.0)
33
32
  dotpath (0.1.0)
34
- faraday (1.7.2)
35
- faraday-em_http (~> 1.0)
36
- faraday-em_synchrony (~> 1.0)
37
- faraday-excon (~> 1.1)
38
- faraday-httpclient (~> 1.0.1)
39
- faraday-net_http (~> 1.0)
40
- faraday-net_http_persistent (~> 1.1)
41
- faraday-patron (~> 1.0)
42
- faraday-rack (~> 1.0)
43
- multipart-post (>= 1.2, < 3)
33
+ faraday (2.3.0)
34
+ faraday-net_http (~> 2.0)
44
35
  ruby2_keywords (>= 0.0.4)
45
- faraday-em_http (1.0.0)
46
- faraday-em_synchrony (1.0.0)
47
- faraday-excon (1.1.0)
48
- faraday-httpclient (1.0.1)
49
- faraday-net_http (1.0.1)
50
- faraday-net_http_persistent (1.2.0)
51
- faraday-patron (1.0.0)
52
- faraday-rack (1.0.0)
53
- faraday_middleware (1.1.0)
54
- faraday (~> 1.0)
36
+ faraday-net_http (2.0.3)
55
37
  hashdiff (1.0.1)
56
- i18n (1.8.11)
38
+ i18n (1.12.0)
57
39
  concurrent-ruby (~> 1.0)
58
40
  json (2.5.1)
59
- jwt (2.2.3)
41
+ jwt (2.7.1)
60
42
  minitest (5.14.4)
61
43
  mocha (1.13.0)
62
- multipart-post (2.1.1)
63
44
  net-http-persistent (4.0.1)
64
45
  connection_pool (~> 2.2)
65
46
  parallel (1.20.1)
@@ -101,7 +82,7 @@ GEM
101
82
  docile (~> 1.1)
102
83
  simplecov-html (~> 0.11)
103
84
  simplecov-html (0.12.3)
104
- subprocess (1.5.5)
85
+ subprocess (1.5.6)
105
86
  tty-color (0.6.0)
106
87
  tty-cursor (0.7.1)
107
88
  tty-prompt (0.23.1)
@@ -112,7 +93,7 @@ GEM
112
93
  tty-screen (~> 0.8)
113
94
  wisper (~> 2.0)
114
95
  tty-screen (0.8.1)
115
- tzinfo (2.0.4)
96
+ tzinfo (2.0.5)
116
97
  concurrent-ruby (~> 1.0)
117
98
  unicode-display_width (2.0.0)
118
99
  webmock (3.14.0)
@@ -121,13 +102,13 @@ GEM
121
102
  hashdiff (>= 0.4.0, < 2.0.0)
122
103
  wisper (2.0.1)
123
104
  yard (0.9.26)
124
- zeitwerk (2.5.3)
105
+ zeitwerk (2.6.8)
125
106
 
126
107
  PLATFORMS
127
108
  ruby
128
109
 
129
110
  DEPENDENCIES
130
- bundler (= 2.2.27)
111
+ bundler (~> 2.4.15)
131
112
  byebug (~> 11.1.3)
132
113
  cased-ruby!
133
114
  minitest (~> 5.14.4)
@@ -142,4 +123,4 @@ DEPENDENCIES
142
123
  yard (~> 0.9.26)
143
124
 
144
125
  BUNDLED WITH
145
- 2.2.27
126
+ 2.4.15
data/lib/cased/cli/log.rb CHANGED
@@ -8,7 +8,7 @@ module Cased
8
8
  BOLD = "\e[1m"
9
9
 
10
10
  def self.string(text)
11
- [color('[cased]', YELLOW, true), text].join(' ')
11
+ [color('[cased]', YELLOW, bold: true), text].join(' ')
12
12
  end
13
13
 
14
14
  def self.log(text)
@@ -17,7 +17,7 @@ module Cased
17
17
  $stdout.flush
18
18
  end
19
19
 
20
- def self.color(text, color, bold = false) # rubocop:disable Style/OptionalBooleanParameter
20
+ def self.color(text, color, bold: false)
21
21
  color = self.class.const_get(color.upcase) if color.is_a?(Symbol)
22
22
  bold = bold ? BOLD : ''
23
23
  "#{bold}#{color}#{text}#{CLEAR}"
data/lib/cased/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cased
4
- VERSION = '0.7.1'
4
+ VERSION = '0.8.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cased-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garrett Bjerkhoel
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-20 00:00:00.000000000 Z
11
+ date: 2023-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -78,14 +78,14 @@ dependencies:
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: 2.2.3
81
+ version: 2.7.1
82
82
  type: :runtime
83
83
  prerelease: false
84
84
  version_requirements: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: 2.2.3
88
+ version: 2.7.1
89
89
  - !ruby/object:Gem::Dependency
90
90
  name: net-http-persistent
91
91
  requirement: !ruby/object:Gem::Requirement
@@ -134,14 +134,14 @@ dependencies:
134
134
  requirements:
135
135
  - - "~>"
136
136
  - !ruby/object:Gem::Version
137
- version: 2.3.16
137
+ version: 2.4.15
138
138
  type: :development
139
139
  prerelease: false
140
140
  version_requirements: !ruby/object:Gem::Requirement
141
141
  requirements:
142
142
  - - "~>"
143
143
  - !ruby/object:Gem::Version
144
- version: 2.3.16
144
+ version: 2.4.15
145
145
  - !ruby/object:Gem::Dependency
146
146
  name: byebug
147
147
  requirement: !ruby/object:Gem::Requirement
@@ -352,11 +352,9 @@ files:
352
352
  - lib/cased/sensitive/string.rb
353
353
  - lib/cased/test_helper.rb
354
354
  - lib/cased/version.rb
355
- - vendor/cache/activesupport-7.0.3.1.gem
356
355
  - vendor/cache/addressable-2.8.0.gem
357
356
  - vendor/cache/ast-2.4.2.gem
358
357
  - vendor/cache/byebug-11.1.3.gem
359
- - vendor/cache/concurrent-ruby-1.1.10.gem
360
358
  - vendor/cache/connection_pool-2.2.5.gem
361
359
  - vendor/cache/crack-0.4.5.gem
362
360
  - vendor/cache/docile-1.4.0.gem
@@ -364,9 +362,6 @@ files:
364
362
  - vendor/cache/faraday-2.3.0.gem
365
363
  - vendor/cache/faraday-net_http-2.0.3.gem
366
364
  - vendor/cache/hashdiff-1.0.1.gem
367
- - vendor/cache/i18n-1.12.0.gem
368
- - vendor/cache/json-2.5.1.gem
369
- - vendor/cache/jwt-2.2.3.gem
370
365
  - vendor/cache/minitest-5.14.4.gem
371
366
  - vendor/cache/mocha-1.13.0.gem
372
367
  - vendor/cache/net-http-persistent-4.0.1.gem
@@ -376,7 +371,6 @@ files:
376
371
  - vendor/cache/public_suffix-4.0.6.gem
377
372
  - vendor/cache/rack-2.2.3.gem
378
373
  - vendor/cache/rack-protection-2.1.0.gem
379
- - vendor/cache/rainbow-3.0.0.gem
380
374
  - vendor/cache/rake-13.0.6.gem
381
375
  - vendor/cache/redis-4.4.0.gem
382
376
  - vendor/cache/regexp_parser-2.1.1.gem
@@ -395,7 +389,6 @@ files:
395
389
  - vendor/cache/tty-prompt-0.23.1.gem
396
390
  - vendor/cache/tty-reader-0.9.0.gem
397
391
  - vendor/cache/tty-screen-0.8.1.gem
398
- - vendor/cache/tzinfo-2.0.5.gem
399
392
  - vendor/cache/unicode-display_width-2.0.0.gem
400
393
  - vendor/cache/webmock-3.14.0.gem
401
394
  - vendor/cache/wisper-2.0.1.gem
@@ -422,7 +415,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
422
415
  - !ruby/object:Gem::Version
423
416
  version: '0'
424
417
  requirements: []
425
- rubygems_version: 3.2.15
418
+ rubygems_version: 3.3.26
426
419
  signing_key:
427
420
  specification_version: 4
428
421
  summary: Ruby library for Cased
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file