consul 1.3.2 → 2.0.1

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: ee6dc0b253298727f44d5dfb975ab428349401e005b960156090591d930bfcf1
4
- data.tar.gz: aeab801a53fd4c287736fb6f17397c24507b214fa77d803f6c1e54aa4d8dce50
3
+ metadata.gz: 83b46cb9f270989be4731e734fd1604a37f0865e92bdc87114299205532251c5
4
+ data.tar.gz: 1ee9488c0f3720eb543fb2584a2249de3690a3b6d59af23954cacb51fa5f0a34
5
5
  SHA512:
6
- metadata.gz: e6480d378cb267f8bd0e018f1b5f47f3d815aad2b7d2a0477042564fb3fce5fab348b93f217957e278d7b299813960a8eeea0ca832a35ca1d23a87335d10dae1
7
- data.tar.gz: 60b20e4cfc85b430502fd6ff28b2403a152710b7c1ee1c56fa1121c162a079db4b1b18a8ac71c6b87cf8f94abb6be8afee38f35d0170187ad264e4a78d019e0c
6
+ metadata.gz: 2bc8ee435ad18470cea75fcf4251359c85a963256e59d3db8e917216a1da2b6ecce9a5ba1e5c9358ff6ec6f1eed7c20926328b284ae3b627bb8de6feae111828
7
+ data.tar.gz: ee30a15ae3917da733f0c62dc4fa9a19c12dc199352501f113c11eec01974f1d4691f5fbb1a1182441d55cbc2bdcf69cfbaacb3ba97f5d8104e391675cb52699
data/.gitignore CHANGED
@@ -7,3 +7,4 @@ pkg
7
7
  .bundle
8
8
  spec/support/database.yml
9
9
  .byebug_history
10
+ tmp
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.3.4
1
+ 3.4.1
data/CHANGELOG.md CHANGED
@@ -7,9 +7,34 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
7
7
 
8
8
  ### Breaking changes
9
9
 
10
+ -
11
+
10
12
  ### Compatible changes
11
13
 
12
- ## 1.3.2 - 2023-08-27
14
+ -
15
+
16
+ ## 2.0.1 - 2026-03-10
17
+
18
+ ### Compatible changes
19
+
20
+ - Add tests for Ruby 4.0 and Rails 8.1
21
+ - Introduce `required_ruby_version` in gemspec so people on legacy Ruby versions don't receive future upgrades
22
+ - Drop tests and support for Ruby < 3 and Rails < 7.2
23
+
24
+ ## 2.0.0 - 2025-01-22
25
+
26
+ ### Breaking changes
27
+
28
+ - Increase gemspec version constraints to Rails >= 6.0
29
+ - Drop tests (and support) for Ruby 2.5
30
+
31
+ ### Compatible changes
32
+
33
+ - Test against Rails 8.0
34
+ - Drop tests for Rails 5.2
35
+ - Test against Ruby 3.4 instead of Ruby 3.3
36
+
37
+ ## 1.3.2 - 2024-08-27
13
38
 
14
39
  ### Compatible changes
15
40
 
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'railties', '>= 7.0.1'
4
+ gem 'railties', '~> 7.2'
5
5
  gem 'assignable_values'
6
6
 
7
7
  # Development dependencies
@@ -11,7 +11,7 @@ gem 'rspec_candy'
11
11
  gem 'shoulda-matchers'
12
12
  gem 'sqlite3', "~> 1.7"
13
13
  gem 'database_cleaner'
14
- gem 'gemika', '>= 0.8.1'
14
+ gem 'gemika', '>= 2.0.0'
15
15
 
16
16
  # Gem under test
17
17
  gem 'consul', :path => '.'
@@ -1,51 +1,55 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- consul (1.3.2)
5
- activerecord (>= 3.2)
6
- activesupport (>= 3.2)
4
+ consul (2.0.1)
5
+ activerecord (>= 7.2)
6
+ activesupport (>= 7.2)
7
7
  edge_rider (>= 0.3.0)
8
8
  memoized (>= 1.0.2)
9
- railties (>= 3.2)
9
+ railties (>= 7.2)
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actionpack (7.1.3.4)
15
- actionview (= 7.1.3.4)
16
- activesupport (= 7.1.3.4)
14
+ actionpack (7.2.2)
15
+ actionview (= 7.2.2)
16
+ activesupport (= 7.2.2)
17
17
  nokogiri (>= 1.8.5)
18
18
  racc
19
- rack (>= 2.2.4)
19
+ rack (>= 2.2.4, < 3.2)
20
20
  rack-session (>= 1.0.1)
21
21
  rack-test (>= 0.6.3)
22
22
  rails-dom-testing (~> 2.2)
23
23
  rails-html-sanitizer (~> 1.6)
24
- actionview (7.1.3.4)
25
- activesupport (= 7.1.3.4)
24
+ useragent (~> 0.16)
25
+ actionview (7.2.2)
26
+ activesupport (= 7.2.2)
26
27
  builder (~> 3.1)
27
28
  erubi (~> 1.11)
28
29
  rails-dom-testing (~> 2.2)
29
30
  rails-html-sanitizer (~> 1.6)
30
- activemodel (7.1.3.4)
31
- activesupport (= 7.1.3.4)
32
- activerecord (7.1.3.4)
33
- activemodel (= 7.1.3.4)
34
- activesupport (= 7.1.3.4)
31
+ activemodel (7.2.2)
32
+ activesupport (= 7.2.2)
33
+ activerecord (7.2.2)
34
+ activemodel (= 7.2.2)
35
+ activesupport (= 7.2.2)
35
36
  timeout (>= 0.4.0)
36
- activesupport (7.1.3.4)
37
+ activesupport (7.2.2)
37
38
  base64
39
+ benchmark (>= 0.3)
38
40
  bigdecimal
39
- concurrent-ruby (~> 1.0, >= 1.0.2)
41
+ concurrent-ruby (~> 1.0, >= 1.3.1)
40
42
  connection_pool (>= 2.2.5)
41
43
  drb
42
44
  i18n (>= 1.6, < 2)
45
+ logger (>= 1.4.2)
43
46
  minitest (>= 5.1)
44
- mutex_m
45
- tzinfo (~> 2.0)
47
+ securerandom (>= 0.3)
48
+ tzinfo (~> 2.0, >= 2.0.5)
46
49
  assignable_values (1.0.0)
47
50
  activerecord (>= 2.3)
48
51
  base64 (0.2.0)
52
+ benchmark (0.4.0)
49
53
  bigdecimal (3.1.8)
50
54
  builder (3.3.0)
51
55
  concurrent-ruby (1.3.3)
@@ -62,24 +66,24 @@ GEM
62
66
  edge_rider (2.3.0)
63
67
  activerecord (>= 3.2)
64
68
  erubi (1.13.0)
65
- gemika (0.8.3)
69
+ gemika (2.0.0)
66
70
  i18n (1.14.5)
67
71
  concurrent-ruby (~> 1.0)
68
72
  io-console (0.7.2)
69
- irb (1.14.0)
73
+ irb (1.14.1)
70
74
  rdoc (>= 4.0.0)
71
75
  reline (>= 0.4.2)
76
+ logger (1.6.1)
72
77
  loofah (2.22.0)
73
78
  crass (~> 1.0.2)
74
79
  nokogiri (>= 1.12.0)
75
80
  memoized (1.1.1)
76
81
  mini_portile2 (2.8.7)
77
82
  minitest (5.24.1)
78
- mutex_m (0.2.0)
79
83
  nokogiri (1.16.6)
80
84
  mini_portile2 (~> 2.8.2)
81
85
  racc (~> 1.4)
82
- psych (5.1.2)
86
+ psych (5.2.0)
83
87
  stringio
84
88
  racc (1.8.0)
85
89
  rack (3.1.7)
@@ -87,9 +91,8 @@ GEM
87
91
  rack (>= 3.0.0)
88
92
  rack-test (2.1.0)
89
93
  rack (>= 1.3)
90
- rackup (2.1.0)
94
+ rackup (2.2.1)
91
95
  rack (>= 3)
92
- webrick (~> 1.8)
93
96
  rails-dom-testing (2.2.0)
94
97
  activesupport (>= 5.0.0)
95
98
  minitest
@@ -97,10 +100,10 @@ GEM
97
100
  rails-html-sanitizer (1.6.0)
98
101
  loofah (~> 2.21)
99
102
  nokogiri (~> 1.14)
100
- railties (7.1.3.4)
101
- actionpack (= 7.1.3.4)
102
- activesupport (= 7.1.3.4)
103
- irb
103
+ railties (7.2.2)
104
+ actionpack (= 7.2.2)
105
+ activesupport (= 7.2.2)
106
+ irb (~> 1.13)
104
107
  rackup (>= 1.0.0)
105
108
  rake (>= 12.2)
106
109
  thor (~> 1.0, >= 1.2.2)
@@ -108,7 +111,7 @@ GEM
108
111
  rake (13.2.1)
109
112
  rdoc (6.7.0)
110
113
  psych (>= 4.0.0)
111
- reline (0.5.9)
114
+ reline (0.5.11)
112
115
  io-console (~> 0.5)
113
116
  rspec (3.13.0)
114
117
  rspec-core (~> 3.13.0)
@@ -134,19 +137,20 @@ GEM
134
137
  rspec_candy (0.5.1)
135
138
  rspec
136
139
  sneaky-save
140
+ securerandom (0.3.2)
137
141
  shoulda-matchers (6.2.0)
138
142
  activesupport (>= 5.2.0)
139
143
  sneaky-save (0.1.3)
140
144
  activerecord (>= 3.2.0)
141
145
  sqlite3 (1.7.3)
142
146
  mini_portile2 (~> 2.8.0)
143
- stringio (3.1.1)
144
- thor (1.3.1)
147
+ stringio (3.1.2)
148
+ thor (1.3.2)
145
149
  timeout (0.4.1)
146
150
  tzinfo (2.0.6)
147
151
  concurrent-ruby (~> 1.0)
148
- webrick (1.8.1)
149
- zeitwerk (2.6.16)
152
+ useragent (0.16.10)
153
+ zeitwerk (2.7.1)
150
154
 
151
155
  PLATFORMS
152
156
  ruby
@@ -155,8 +159,8 @@ DEPENDENCIES
155
159
  assignable_values
156
160
  consul!
157
161
  database_cleaner
158
- gemika (>= 0.8.1)
159
- railties (>= 7.0.1)
162
+ gemika (>= 2.0.0)
163
+ railties (~> 7.2)
160
164
  rspec
161
165
  rspec-rails
162
166
  rspec_candy
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'railties', '>= 3.2'
4
+ gem 'railties', '~> 8.0'
5
5
  gem 'assignable_values'
6
6
 
7
7
  # Development dependencies
@@ -11,7 +11,11 @@ gem 'rspec_candy'
11
11
  gem 'shoulda-matchers'
12
12
  gem 'sqlite3'
13
13
  gem 'database_cleaner'
14
- gem 'gemika', '>= 0.8.1'
14
+ gem 'gemika', '>= 2.0.0'
15
+ gem 'actionpack'
16
+
17
+ # Previous default gems
18
+ gem 'cgi'
15
19
 
16
20
  # Gem under test
17
21
  gem 'consul', :path => '.'
data/Gemfile.8-0.lock ADDED
@@ -0,0 +1,179 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ consul (2.0.1)
5
+ activerecord (>= 7.2)
6
+ activesupport (>= 7.2)
7
+ edge_rider (>= 0.3.0)
8
+ memoized (>= 1.0.2)
9
+ railties (>= 7.2)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actionpack (8.0.1)
15
+ actionview (= 8.0.1)
16
+ activesupport (= 8.0.1)
17
+ nokogiri (>= 1.8.5)
18
+ rack (>= 2.2.4)
19
+ rack-session (>= 1.0.1)
20
+ rack-test (>= 0.6.3)
21
+ rails-dom-testing (~> 2.2)
22
+ rails-html-sanitizer (~> 1.6)
23
+ useragent (~> 0.16)
24
+ actionview (8.0.1)
25
+ activesupport (= 8.0.1)
26
+ builder (~> 3.1)
27
+ erubi (~> 1.11)
28
+ rails-dom-testing (~> 2.2)
29
+ rails-html-sanitizer (~> 1.6)
30
+ activemodel (8.0.1)
31
+ activesupport (= 8.0.1)
32
+ activerecord (8.0.1)
33
+ activemodel (= 8.0.1)
34
+ activesupport (= 8.0.1)
35
+ timeout (>= 0.4.0)
36
+ activesupport (8.0.1)
37
+ base64
38
+ benchmark (>= 0.3)
39
+ bigdecimal
40
+ concurrent-ruby (~> 1.0, >= 1.3.1)
41
+ connection_pool (>= 2.2.5)
42
+ drb
43
+ i18n (>= 1.6, < 2)
44
+ logger (>= 1.4.2)
45
+ minitest (>= 5.1)
46
+ securerandom (>= 0.3)
47
+ tzinfo (~> 2.0, >= 2.0.5)
48
+ uri (>= 0.13.1)
49
+ assignable_values (1.0.0)
50
+ activerecord (>= 2.3)
51
+ base64 (0.2.0)
52
+ benchmark (0.4.0)
53
+ bigdecimal (3.1.8)
54
+ builder (3.3.0)
55
+ cgi (0.3.6)
56
+ concurrent-ruby (1.3.3)
57
+ connection_pool (2.4.1)
58
+ crass (1.0.6)
59
+ database_cleaner (2.0.2)
60
+ database_cleaner-active_record (>= 2, < 3)
61
+ database_cleaner-active_record (2.2.0)
62
+ activerecord (>= 5.a)
63
+ database_cleaner-core (~> 2.0.0)
64
+ database_cleaner-core (2.0.1)
65
+ date (3.4.1)
66
+ diff-lcs (1.5.1)
67
+ drb (2.2.1)
68
+ edge_rider (2.3.0)
69
+ activerecord (>= 3.2)
70
+ erubi (1.13.0)
71
+ gemika (2.0.0)
72
+ i18n (1.14.5)
73
+ concurrent-ruby (~> 1.0)
74
+ io-console (0.8.0)
75
+ irb (1.14.3)
76
+ rdoc (>= 4.0.0)
77
+ reline (>= 0.4.2)
78
+ logger (1.6.1)
79
+ loofah (2.22.0)
80
+ crass (~> 1.0.2)
81
+ nokogiri (>= 1.12.0)
82
+ memoized (1.1.1)
83
+ mini_portile2 (2.8.8)
84
+ minitest (6.0.1)
85
+ prism (~> 1.5)
86
+ nokogiri (1.16.6)
87
+ mini_portile2 (~> 2.8.2)
88
+ racc (~> 1.4)
89
+ prism (1.9.0)
90
+ psych (5.2.2)
91
+ date
92
+ stringio
93
+ racc (1.8.0)
94
+ rack (3.1.7)
95
+ rack-session (2.0.0)
96
+ rack (>= 3.0.0)
97
+ rack-test (2.1.0)
98
+ rack (>= 1.3)
99
+ rackup (2.2.1)
100
+ rack (>= 3)
101
+ rails-dom-testing (2.2.0)
102
+ activesupport (>= 5.0.0)
103
+ minitest
104
+ nokogiri (>= 1.6)
105
+ rails-html-sanitizer (1.6.0)
106
+ loofah (~> 2.21)
107
+ nokogiri (~> 1.14)
108
+ railties (8.0.1)
109
+ actionpack (= 8.0.1)
110
+ activesupport (= 8.0.1)
111
+ irb (~> 1.13)
112
+ rackup (>= 1.0.0)
113
+ rake (>= 12.2)
114
+ thor (~> 1.0, >= 1.2.2)
115
+ zeitwerk (~> 2.6)
116
+ rake (13.2.1)
117
+ rdoc (6.10.0)
118
+ psych (>= 4.0.0)
119
+ reline (0.6.0)
120
+ io-console (~> 0.5)
121
+ rspec (3.13.0)
122
+ rspec-core (~> 3.13.0)
123
+ rspec-expectations (~> 3.13.0)
124
+ rspec-mocks (~> 3.13.0)
125
+ rspec-core (3.13.0)
126
+ rspec-support (~> 3.13.0)
127
+ rspec-expectations (3.13.1)
128
+ diff-lcs (>= 1.2.0, < 2.0)
129
+ rspec-support (~> 3.13.0)
130
+ rspec-mocks (3.13.1)
131
+ diff-lcs (>= 1.2.0, < 2.0)
132
+ rspec-support (~> 3.13.0)
133
+ rspec-rails (6.1.3)
134
+ actionpack (>= 6.1)
135
+ activesupport (>= 6.1)
136
+ railties (>= 6.1)
137
+ rspec-core (~> 3.13)
138
+ rspec-expectations (~> 3.13)
139
+ rspec-mocks (~> 3.13)
140
+ rspec-support (~> 3.13)
141
+ rspec-support (3.13.1)
142
+ rspec_candy (0.5.1)
143
+ rspec
144
+ sneaky-save
145
+ securerandom (0.3.2)
146
+ shoulda-matchers (6.2.0)
147
+ activesupport (>= 5.2.0)
148
+ sneaky-save (0.1.3)
149
+ activerecord (>= 3.2.0)
150
+ sqlite3 (2.4.1)
151
+ mini_portile2 (~> 2.8.0)
152
+ stringio (3.1.2)
153
+ thor (1.3.2)
154
+ timeout (0.4.1)
155
+ tzinfo (2.0.6)
156
+ concurrent-ruby (~> 1.0)
157
+ uri (1.0.2)
158
+ useragent (0.16.10)
159
+ zeitwerk (2.7.1)
160
+
161
+ PLATFORMS
162
+ ruby
163
+
164
+ DEPENDENCIES
165
+ actionpack
166
+ assignable_values
167
+ cgi
168
+ consul!
169
+ database_cleaner
170
+ gemika (>= 2.0.0)
171
+ railties (~> 8.0)
172
+ rspec
173
+ rspec-rails
174
+ rspec_candy
175
+ shoulda-matchers
176
+ sqlite3
177
+
178
+ BUNDLED WITH
179
+ 2.5.15
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'railties', '>= 7.0.1'
4
+ gem 'railties', '~> 8.1'
5
5
  gem 'assignable_values'
6
6
 
7
7
  # Development dependencies
@@ -11,7 +11,11 @@ gem 'rspec_candy'
11
11
  gem 'shoulda-matchers'
12
12
  gem 'sqlite3'
13
13
  gem 'database_cleaner'
14
- gem 'gemika', '>= 0.8.1'
14
+ gem 'gemika', '>= 2.0.0'
15
+ gem 'actionpack'
16
+
17
+ # Previous default gems
18
+ gem 'cgi'
15
19
 
16
20
  # Gem under test
17
21
  gem 'consul', :path => '.'
data/Gemfile.8-1.lock ADDED
@@ -0,0 +1,189 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ consul (2.0.1)
5
+ activerecord (>= 7.2)
6
+ activesupport (>= 7.2)
7
+ edge_rider (>= 0.3.0)
8
+ memoized (>= 1.0.2)
9
+ railties (>= 7.2)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actionpack (8.1.2)
15
+ actionview (= 8.1.2)
16
+ activesupport (= 8.1.2)
17
+ nokogiri (>= 1.8.5)
18
+ rack (>= 2.2.4)
19
+ rack-session (>= 1.0.1)
20
+ rack-test (>= 0.6.3)
21
+ rails-dom-testing (~> 2.2)
22
+ rails-html-sanitizer (~> 1.6)
23
+ useragent (~> 0.16)
24
+ actionview (8.1.2)
25
+ activesupport (= 8.1.2)
26
+ builder (~> 3.1)
27
+ erubi (~> 1.11)
28
+ rails-dom-testing (~> 2.2)
29
+ rails-html-sanitizer (~> 1.6)
30
+ activemodel (8.1.2)
31
+ activesupport (= 8.1.2)
32
+ activerecord (8.1.2)
33
+ activemodel (= 8.1.2)
34
+ activesupport (= 8.1.2)
35
+ timeout (>= 0.4.0)
36
+ activesupport (8.1.2)
37
+ base64
38
+ bigdecimal
39
+ concurrent-ruby (~> 1.0, >= 1.3.1)
40
+ connection_pool (>= 2.2.5)
41
+ drb
42
+ i18n (>= 1.6, < 2)
43
+ json
44
+ logger (>= 1.4.2)
45
+ minitest (>= 5.1)
46
+ securerandom (>= 0.3)
47
+ tzinfo (~> 2.0, >= 2.0.5)
48
+ uri (>= 0.13.1)
49
+ assignable_values (1.0.0)
50
+ activerecord (>= 2.3)
51
+ base64 (0.2.0)
52
+ bigdecimal (3.1.8)
53
+ builder (3.3.0)
54
+ cgi (0.3.6)
55
+ concurrent-ruby (1.3.3)
56
+ connection_pool (2.4.1)
57
+ crass (1.0.6)
58
+ database_cleaner (2.0.2)
59
+ database_cleaner-active_record (>= 2, < 3)
60
+ database_cleaner-active_record (2.2.0)
61
+ activerecord (>= 5.a)
62
+ database_cleaner-core (~> 2.0.0)
63
+ database_cleaner-core (2.0.1)
64
+ date (3.5.1)
65
+ diff-lcs (1.5.1)
66
+ drb (2.2.1)
67
+ edge_rider (2.3.0)
68
+ activerecord (>= 3.2)
69
+ erb (6.0.1)
70
+ erubi (1.13.0)
71
+ gemika (2.0.0)
72
+ i18n (1.14.5)
73
+ concurrent-ruby (~> 1.0)
74
+ io-console (0.8.2)
75
+ irb (1.17.0)
76
+ pp (>= 0.6.0)
77
+ prism (>= 1.3.0)
78
+ rdoc (>= 4.0.0)
79
+ reline (>= 0.4.2)
80
+ json (2.18.1)
81
+ logger (1.6.1)
82
+ loofah (2.22.0)
83
+ crass (~> 1.0.2)
84
+ nokogiri (>= 1.12.0)
85
+ memoized (1.1.1)
86
+ mini_portile2 (2.8.8)
87
+ minitest (6.0.1)
88
+ prism (~> 1.5)
89
+ nokogiri (1.16.6)
90
+ mini_portile2 (~> 2.8.2)
91
+ racc (~> 1.4)
92
+ pp (0.6.3)
93
+ prettyprint
94
+ prettyprint (0.2.0)
95
+ prism (1.9.0)
96
+ psych (5.3.1)
97
+ date
98
+ stringio
99
+ racc (1.8.0)
100
+ rack (3.1.7)
101
+ rack-session (2.0.0)
102
+ rack (>= 3.0.0)
103
+ rack-test (2.1.0)
104
+ rack (>= 1.3)
105
+ rackup (2.3.1)
106
+ rack (>= 3)
107
+ rails-dom-testing (2.2.0)
108
+ activesupport (>= 5.0.0)
109
+ minitest
110
+ nokogiri (>= 1.6)
111
+ rails-html-sanitizer (1.6.0)
112
+ loofah (~> 2.21)
113
+ nokogiri (~> 1.14)
114
+ railties (8.1.2)
115
+ actionpack (= 8.1.2)
116
+ activesupport (= 8.1.2)
117
+ irb (~> 1.13)
118
+ rackup (>= 1.0.0)
119
+ rake (>= 12.2)
120
+ thor (~> 1.0, >= 1.2.2)
121
+ tsort (>= 0.2)
122
+ zeitwerk (~> 2.6)
123
+ rake (13.3.1)
124
+ rdoc (7.2.0)
125
+ erb
126
+ psych (>= 4.0.0)
127
+ tsort
128
+ reline (0.6.3)
129
+ io-console (~> 0.5)
130
+ rspec (3.13.0)
131
+ rspec-core (~> 3.13.0)
132
+ rspec-expectations (~> 3.13.0)
133
+ rspec-mocks (~> 3.13.0)
134
+ rspec-core (3.13.0)
135
+ rspec-support (~> 3.13.0)
136
+ rspec-expectations (3.13.1)
137
+ diff-lcs (>= 1.2.0, < 2.0)
138
+ rspec-support (~> 3.13.0)
139
+ rspec-mocks (3.13.1)
140
+ diff-lcs (>= 1.2.0, < 2.0)
141
+ rspec-support (~> 3.13.0)
142
+ rspec-rails (6.1.3)
143
+ actionpack (>= 6.1)
144
+ activesupport (>= 6.1)
145
+ railties (>= 6.1)
146
+ rspec-core (~> 3.13)
147
+ rspec-expectations (~> 3.13)
148
+ rspec-mocks (~> 3.13)
149
+ rspec-support (~> 3.13)
150
+ rspec-support (3.13.1)
151
+ rspec_candy (0.5.1)
152
+ rspec
153
+ sneaky-save
154
+ securerandom (0.3.2)
155
+ shoulda-matchers (6.2.0)
156
+ activesupport (>= 5.2.0)
157
+ sneaky-save (0.1.3)
158
+ activerecord (>= 3.2.0)
159
+ sqlite3 (2.4.1)
160
+ mini_portile2 (~> 2.8.0)
161
+ stringio (3.2.0)
162
+ thor (1.5.0)
163
+ timeout (0.4.1)
164
+ tsort (0.2.0)
165
+ tzinfo (2.0.6)
166
+ concurrent-ruby (~> 1.0)
167
+ uri (1.0.2)
168
+ useragent (0.16.10)
169
+ zeitwerk (2.7.4)
170
+
171
+ PLATFORMS
172
+ ruby
173
+
174
+ DEPENDENCIES
175
+ actionpack
176
+ assignable_values
177
+ cgi
178
+ consul!
179
+ database_cleaner
180
+ gemika (>= 2.0.0)
181
+ railties (~> 8.1)
182
+ rspec
183
+ rspec-rails
184
+ rspec_candy
185
+ shoulda-matchers
186
+ sqlite3
187
+
188
+ BUNDLED WITH
189
+ 2.5.15