rails_api_logger 0.10.0 → 0.10.1

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: 2fda8a1c76ae8f88f8753f6a24b0e794031f2fe699cf517b2bdc0dc4a9492047
4
- data.tar.gz: 6435707109046e2f3444290e8f1c18381a2bbd3b9558602198752c077de3f7ed
3
+ metadata.gz: 4959094cde8a80515bac5d15b4bd4f475e7c723b94803a2ecdc00de59aba1995
4
+ data.tar.gz: 283881fcb6952b5ffab21a816558f8c6ef9c705252d25f183a261e614317db3b
5
5
  SHA512:
6
- metadata.gz: d8660e1388c86679bc3be3004049b783e96eef9bf18c6c61fb4d885fdd9cf4f2408bb131adf35193652687a3f37b2a7411e3e7953eb919fc468ab99a165e147c
7
- data.tar.gz: 53bbe981627e011159acaf23468f1b1bf00b6171ae9f50fc6d577d3461937a871e9955f29e391fdb38027902fd6db42a6a9b20614d6da21d50bacbf0bb2cc980
6
+ metadata.gz: 1d727ed904aff3668f16d2bdfdedee5576b30c53819911303f7df0723608344fbe9c30eb7e313cde7c2ca6d33e832c9ac4073baa065331f2cb9e11276975e3f8
7
+ data.tar.gz: e76f28822d9646a1973f4fb75612c52a0ed0d18d089ae27e9eccc5ac5f1313ee58e5236564b086246a17d6f158d4616a29ebc1419e25484a7a6cb73021529629
data/.gitignore CHANGED
@@ -9,6 +9,8 @@
9
9
  /spec/dummy/log
10
10
  /spec/dummy/tmp
11
11
  /spec/dummy/db/*.sqlite3*
12
+ /spec/dummy/db/schema.rb
13
+ /spec/dummy/db/api_logger_schema.rb
12
14
  .env
13
15
 
14
16
  # rspec failure tracking
@@ -23,61 +23,140 @@ blocks:
23
23
  - bundle install -j 4
24
24
 
25
25
  - cache store
26
+ env_vars:
27
+ - name: BUNDLE_GEMFILE
28
+ value: /home/semaphore/rails_api_logger/gemfiles/rails_8.0.gemfile
26
29
  jobs:
27
30
  - name: linter
28
31
  commands:
29
32
  - bundle exec standardrb
30
- - name: tests sqlite separate db
33
+ - name: tests postgres separate db and separate target
31
34
  env_vars:
35
+ - name: SAME_DB
36
+ value: "false"
37
+ - name: SAME_TARGET
38
+ value: "false"
32
39
  - name: TARGET_DB
33
- value: sqlite
40
+ value: postgres
34
41
  - name: RAILS_ENV
35
42
  value: test
36
43
  commands:
44
+ - sem-service start postgres 14
45
+ - bin/rails db:create db:migrate
37
46
  - bundle exec rspec
38
- - name: tests postgres separate db
47
+ - name: tests postgres separate db and same target
39
48
  env_vars:
49
+ - name: SAME_DB
50
+ value: "false"
51
+ - name: SAME_TARGET
52
+ value: "true"
40
53
  - name: TARGET_DB
41
54
  value: postgres
42
55
  - name: RAILS_ENV
43
56
  value: test
44
57
  commands:
45
58
  - sem-service start postgres 14
46
- - bin/rails db:create db:schema:load
59
+ - bin/rails db:create db:migrate
47
60
  - bundle exec rspec
48
- - name: tests sqlite same db
61
+ - name: tests postgres same db and separate target
49
62
  env_vars:
50
63
  - name: SAME_DB
51
64
  value: "true"
52
65
  - name: TARGET_DB
53
- value: sqlite
66
+ value: postgres
54
67
  - name: RAILS_ENV
55
68
  value: test
56
69
  commands:
70
+ - sem-service start postgres 14
71
+ - bin/rails db:create db:migrate
57
72
  - bundle exec rspec
58
- - name: tests postgres same db
73
+ - name: tests postgres separate db and separate target | rails 6.1
59
74
  env_vars:
60
75
  - name: SAME_DB
61
- value: "true"
76
+ value: "false"
77
+ - name: SAME_TARGET
78
+ value: "false"
62
79
  - name: TARGET_DB
63
80
  value: postgres
64
81
  - name: RAILS_ENV
65
82
  value: test
83
+ - name: BUNDLE_GEMFILE
84
+ value: /home/semaphore/rails_api_logger/gemfiles/rails_6.1.gemfile
66
85
  commands:
67
86
  - sem-service start postgres 14
68
- - bin/rails db:create db:schema:load
87
+ - bin/rails db:create db:migrate
69
88
  - bundle exec rspec
70
- - name: tests postgres same target
89
+ - name: tests postgres separate db and separate target | rails 7.0
71
90
  env_vars:
91
+ - name: SAME_DB
92
+ value: "false"
72
93
  - name: SAME_TARGET
73
- value: "true"
94
+ value: "false"
95
+ - name: TARGET_DB
96
+ value: postgres
97
+ - name: RAILS_ENV
98
+ value: test
99
+ - name: BUNDLE_GEMFILE
100
+ value: /home/semaphore/rails_api_logger/gemfiles/rails_7.0.gemfile
101
+ commands:
102
+ - sem-service start postgres 14
103
+ - bin/rails db:create db:migrate
104
+ - bundle exec rspec
105
+ - name: tests postgres separate db and separate target | rails 7.1
106
+ env_vars:
107
+ - name: SAME_DB
108
+ value: "false"
109
+ - name: SAME_TARGET
110
+ value: "false"
74
111
  - name: TARGET_DB
75
112
  value: postgres
76
113
  - name: RAILS_ENV
77
114
  value: test
115
+ - name: BUNDLE_GEMFILE
116
+ value: /home/semaphore/rails_api_logger/gemfiles/rails_7.1.gemfile
78
117
  commands:
79
118
  - sem-service start postgres 14
80
- - bin/rails db:create db:schema:load
119
+ - bin/rails db:create db:migrate
120
+ - bundle exec rspec
121
+ - name: tests postgres separate db and separate target | rails 7.2
122
+ env_vars:
123
+ - name: SAME_DB
124
+ value: "false"
125
+ - name: SAME_TARGET
126
+ value: "false"
127
+ - name: TARGET_DB
128
+ value: postgres
129
+ - name: RAILS_ENV
130
+ value: test
131
+ - name: BUNDLE_GEMFILE
132
+ value: /home/semaphore/rails_api_logger/gemfiles/rails_7.2.gemfile
133
+ commands:
134
+ - sem-service start postgres 14
135
+ - bin/rails db:create db:migrate
136
+ - bundle exec rspec
137
+ - name: tests sqlite separate db and separate target
138
+ env_vars:
139
+ - name: SAME_DB
140
+ value: "false"
141
+ - name: SAME_TARGET
142
+ value: "false"
143
+ - name: TARGET_DB
144
+ value: sqlite
145
+ - name: RAILS_ENV
146
+ value: test
147
+ commands:
148
+ - bin/rails db:create db:migrate
149
+ - bundle exec rspec
150
+ - name: tests sqlite same db
151
+ env_vars:
152
+ - name: SAME_DB
153
+ value: "true"
154
+ - name: TARGET_DB
155
+ value: sqlite
156
+ - name: RAILS_ENV
157
+ value: test
158
+ commands:
159
+ - bin/rails db:create db:migrate
81
160
  - bundle exec rspec
82
161
  promotions:
83
162
  - name: main
data/.standard.yml ADDED
@@ -0,0 +1,2 @@
1
+ ignore:
2
+ - 'gemfiles/**/*'
data/Appraisals ADDED
@@ -0,0 +1,31 @@
1
+ appraise "rails-6.1" do
2
+ gem "concurrent-ruby", "1.3.4"
3
+ gem "rails", "~> 6.1.0"
4
+ gem "rspec-rails", "~> 6.1.0"
5
+ gem "sqlite3", "~> 1.7.3"
6
+ end
7
+
8
+ appraise "rails-7.0" do
9
+ gem "concurrent-ruby", "1.3.4"
10
+ gem "rails", "~> 7.0.0"
11
+ gem "rspec-rails", "~> 7.1.0"
12
+ gem "sqlite3", "~> 1.7.3"
13
+ end
14
+
15
+ appraise "rails-7.1" do
16
+ gem "rails", "~> 7.1.0"
17
+ gem "rspec-rails", "~> 7.1.0"
18
+ gem "sqlite3", "~> 1.7.3"
19
+ end
20
+
21
+ appraise "rails-7.2" do
22
+ gem "rails", "~> 7.2.0"
23
+ gem "rspec-rails", "~> 7.1.0"
24
+ gem "sqlite3", "~> 1.7.3"
25
+ end
26
+
27
+ appraise "rails-8.0" do
28
+ gem "rails", "~> 8.0.0"
29
+ gem "rspec-rails", "~> 7.1.0"
30
+ gem "sqlite3", "~> 2.1.0"
31
+ end
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # 0.10.1
2
+
3
+ * Fix a bug introduced in 0.8.1 where we fixed Rails 7.1 warnings. This broke the serialization in Rails < 7.1.
4
+ We now configure the serializer differently if you are running Rails 7.0 or lower.
5
+ If you used the gem version 0.8.1 or above in combination with Rails 7.0 or lower this caused the serialization of
6
+ the request and response body into YML format instead of JSON. This is now fixed and tests run on different rails
7
+ versions as well.
8
+
1
9
  # 0.10.0
2
10
 
3
11
  **BREAKING CHANGES**
@@ -12,7 +20,7 @@ This version contains many breaking changes. Consider this when upgrading:
12
20
  * `InboundRequestsLoggerMiddleware` has been renamed to `RailsApiLogger::Middleware`
13
21
 
14
22
  > Do the changes above and then continue with the following steps if you want to connect rails_api_logger to a different
15
- database:
23
+ > database:
16
24
 
17
25
  * Specify a database called `api_logger`. [Check here](spec/dummy/config/database.yml) for an example.
18
26
  * Check that everything still works (also in production!) with the new configuration.
@@ -23,8 +31,8 @@ database:
23
31
  * Add the following line into `production.rb`:
24
32
  `config.rails_api_logger.connects_to = { database: { writing: :api_logger } }` if you want to point to a new database.
25
33
 
26
- > If you are not on SQLite you can point also `api_logger` database to the current database you have, so you benefit from
27
- isolated transactions but don't need to create a new database or migrate data.
34
+ > If you are not on SQLite you can point also `api_logger` database to the current database you have, so you benefit
35
+ > from isolated transactions but don't need to create a new database or migrate data.
28
36
 
29
37
  ### List of changes in this version:
30
38
 
data/README.md CHANGED
@@ -56,7 +56,10 @@ and [configure a new database](spec/dummy/config/database.yml) accordingly.
56
56
  > ⚠️ If you skip this step, rails_api_logger will use your primary database but a rollback will also rollback the
57
57
  > writing of logs
58
58
  > If you are not on SQLite you can point also `api_logger` to the same database! By doing so you can use a single
59
- > database but still guarantee the writing of logs in an isolated transaction.
59
+ > database but still guarantee the writing of logs in an isolated transaction:
60
+ > ```
61
+ > config.rails_api_logger.connects_to = { database: { writing: :primary } }
62
+ > ```
60
63
 
61
64
  ## Log Outbound Requests
62
65
 
@@ -213,8 +216,37 @@ end
213
216
 
214
217
  ## Development
215
218
 
216
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can
217
- also run `bin/console` for an interactive prompt that will allow you to experiment.
219
+ We use Appraisals to un on different Rails versions. This is a run example:
220
+
221
+ ```bash
222
+ export SAME_TARGET=false
223
+ export SAME_DB=false
224
+ export TARGET_DB=postgres
225
+ export BUNDLE_GEMFILE=/Users/alessandrorodi/RenuoWorkspace/rails_api_logger/gemfiles/rails_6.1.gemfile
226
+ bundle exec rails db:create db:migrate
227
+ bundle exec rspec
228
+ ```
229
+
230
+ These are the possible ENV variables:
231
+
232
+ * `SAME_TARGET` if true, the api_logger database is the same as the primary one. It will still use two separate
233
+ connection pools, but they'll point to the same database. This cannot be set to true if TARGET_DB is sqlite because
234
+ sqlite does not support multiple connection pools to the same database.
235
+ * `SAME_DB` if true, the api_logger uses the primary database. In this case SAME_TARGET is ignored.
236
+ * `TARGET_DB` the database to use. Can be `postgres`, `mysql`, or `sqlite`.
237
+ * `BUNDLE_GEMFILE` the gemfile to use. This is used to run the tests on different Rails versions.
238
+
239
+ Possible combinations:
240
+
241
+ | SAME_DB | SAME_TARGET | TARGET_DB | Description |
242
+ |---------|-------------|-----------|----------------------------------------------------------------------|
243
+ | false | false | postgres | Separate database, separate connection pool. |
244
+ | false | true | postgres | Same database, separate connection pool. |
245
+ | true | - | postgres | Same connection pool so the separate target is ignored. |
246
+ | false | false | sqlite | Separate database, separate connection pool. |
247
+ | false | true | sqlite | Not allowed. sqlite cannot have two connection pools to the same db. |
248
+ | true | - | sqlite | Same connection pool so the separate target is ignored. |
249
+
218
250
 
219
251
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the
220
252
  version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version,
@@ -4,8 +4,13 @@ module RailsApiLogger
4
4
 
5
5
  connects_to(**RailsApiLogger.connects_to) if RailsApiLogger.connects_to
6
6
 
7
- serialize :request_body, coder: JSON
8
- serialize :response_body, coder: JSON
7
+ if Gem::Version.new(Rails.version) >= Gem::Version.new("7.1")
8
+ serialize :request_body, coder: JSON
9
+ serialize :response_body, coder: JSON
10
+ else
11
+ serialize :request_body, JSON
12
+ serialize :response_body, JSON
13
+ end
9
14
 
10
15
  belongs_to :loggable, optional: true, polymorphic: true
11
16
 
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "concurrent-ruby", "1.3.4"
6
+ gem "rails", "~> 6.1.0"
7
+ gem "rspec-rails", "~> 6.1.0"
8
+ gem "sqlite3", "~> 1.7.3"
9
+
10
+ gemspec path: "../"
@@ -0,0 +1,240 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ rails_api_logger (0.10.1)
5
+ activejob (>= 6.0)
6
+ activerecord (>= 6.0)
7
+ nokogiri
8
+ railties (>= 6.0)
9
+ zeitwerk (>= 2.0.0)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actioncable (6.1.7.10)
15
+ actionpack (= 6.1.7.10)
16
+ activesupport (= 6.1.7.10)
17
+ nio4r (~> 2.0)
18
+ websocket-driver (>= 0.6.1)
19
+ actionmailbox (6.1.7.10)
20
+ actionpack (= 6.1.7.10)
21
+ activejob (= 6.1.7.10)
22
+ activerecord (= 6.1.7.10)
23
+ activestorage (= 6.1.7.10)
24
+ activesupport (= 6.1.7.10)
25
+ mail (>= 2.7.1)
26
+ actionmailer (6.1.7.10)
27
+ actionpack (= 6.1.7.10)
28
+ actionview (= 6.1.7.10)
29
+ activejob (= 6.1.7.10)
30
+ activesupport (= 6.1.7.10)
31
+ mail (~> 2.5, >= 2.5.4)
32
+ rails-dom-testing (~> 2.0)
33
+ actionpack (6.1.7.10)
34
+ actionview (= 6.1.7.10)
35
+ activesupport (= 6.1.7.10)
36
+ rack (~> 2.0, >= 2.0.9)
37
+ rack-test (>= 0.6.3)
38
+ rails-dom-testing (~> 2.0)
39
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
40
+ actiontext (6.1.7.10)
41
+ actionpack (= 6.1.7.10)
42
+ activerecord (= 6.1.7.10)
43
+ activestorage (= 6.1.7.10)
44
+ activesupport (= 6.1.7.10)
45
+ nokogiri (>= 1.8.5)
46
+ actionview (6.1.7.10)
47
+ activesupport (= 6.1.7.10)
48
+ builder (~> 3.1)
49
+ erubi (~> 1.4)
50
+ rails-dom-testing (~> 2.0)
51
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
52
+ activejob (6.1.7.10)
53
+ activesupport (= 6.1.7.10)
54
+ globalid (>= 0.3.6)
55
+ activemodel (6.1.7.10)
56
+ activesupport (= 6.1.7.10)
57
+ activerecord (6.1.7.10)
58
+ activemodel (= 6.1.7.10)
59
+ activesupport (= 6.1.7.10)
60
+ activestorage (6.1.7.10)
61
+ actionpack (= 6.1.7.10)
62
+ activejob (= 6.1.7.10)
63
+ activerecord (= 6.1.7.10)
64
+ activesupport (= 6.1.7.10)
65
+ marcel (~> 1.0)
66
+ mini_mime (>= 1.1.0)
67
+ activesupport (6.1.7.10)
68
+ concurrent-ruby (~> 1.0, >= 1.0.2)
69
+ i18n (>= 1.6, < 2)
70
+ minitest (>= 5.1)
71
+ tzinfo (~> 2.0)
72
+ zeitwerk (~> 2.3)
73
+ appraisal (2.5.0)
74
+ bundler
75
+ rake
76
+ thor (>= 0.14.0)
77
+ ast (2.4.2)
78
+ base64 (0.2.0)
79
+ builder (3.3.0)
80
+ concurrent-ruby (1.3.4)
81
+ crass (1.0.6)
82
+ date (3.4.1)
83
+ diff-lcs (1.6.0)
84
+ erubi (1.13.1)
85
+ globalid (1.2.1)
86
+ activesupport (>= 6.1)
87
+ i18n (1.14.7)
88
+ concurrent-ruby (~> 1.0)
89
+ json (2.10.1)
90
+ language_server-protocol (3.17.0.4)
91
+ lint_roller (1.1.0)
92
+ loofah (2.24.0)
93
+ crass (~> 1.0.2)
94
+ nokogiri (>= 1.12.0)
95
+ mail (2.8.1)
96
+ mini_mime (>= 0.1.1)
97
+ net-imap
98
+ net-pop
99
+ net-smtp
100
+ marcel (1.0.4)
101
+ method_source (1.1.0)
102
+ mini_mime (1.1.5)
103
+ minitest (5.25.4)
104
+ mysql2 (0.5.6)
105
+ net-imap (0.5.6)
106
+ date
107
+ net-protocol
108
+ net-pop (0.1.2)
109
+ net-protocol
110
+ net-protocol (0.2.2)
111
+ timeout
112
+ net-smtp (0.5.1)
113
+ net-protocol
114
+ nio4r (2.7.4)
115
+ nokogiri (1.18.2-arm64-darwin)
116
+ racc (~> 1.4)
117
+ parallel (1.26.3)
118
+ parser (3.3.7.1)
119
+ ast (~> 2.4.1)
120
+ racc
121
+ pg (1.5.9)
122
+ racc (1.8.1)
123
+ rack (2.2.11)
124
+ rack-test (2.2.0)
125
+ rack (>= 1.3)
126
+ rails (6.1.7.10)
127
+ actioncable (= 6.1.7.10)
128
+ actionmailbox (= 6.1.7.10)
129
+ actionmailer (= 6.1.7.10)
130
+ actionpack (= 6.1.7.10)
131
+ actiontext (= 6.1.7.10)
132
+ actionview (= 6.1.7.10)
133
+ activejob (= 6.1.7.10)
134
+ activemodel (= 6.1.7.10)
135
+ activerecord (= 6.1.7.10)
136
+ activestorage (= 6.1.7.10)
137
+ activesupport (= 6.1.7.10)
138
+ bundler (>= 1.15.0)
139
+ railties (= 6.1.7.10)
140
+ sprockets-rails (>= 2.0.0)
141
+ rails-dom-testing (2.2.0)
142
+ activesupport (>= 5.0.0)
143
+ minitest
144
+ nokogiri (>= 1.6)
145
+ rails-html-sanitizer (1.6.2)
146
+ loofah (~> 2.21)
147
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
148
+ railties (6.1.7.10)
149
+ actionpack (= 6.1.7.10)
150
+ activesupport (= 6.1.7.10)
151
+ method_source
152
+ rake (>= 12.2)
153
+ thor (~> 1.0)
154
+ rainbow (3.1.1)
155
+ rake (12.3.3)
156
+ regexp_parser (2.10.0)
157
+ rspec-core (3.13.3)
158
+ rspec-support (~> 3.13.0)
159
+ rspec-expectations (3.13.3)
160
+ diff-lcs (>= 1.2.0, < 2.0)
161
+ rspec-support (~> 3.13.0)
162
+ rspec-mocks (3.13.2)
163
+ diff-lcs (>= 1.2.0, < 2.0)
164
+ rspec-support (~> 3.13.0)
165
+ rspec-rails (6.1.5)
166
+ actionpack (>= 6.1)
167
+ activesupport (>= 6.1)
168
+ railties (>= 6.1)
169
+ rspec-core (~> 3.13)
170
+ rspec-expectations (~> 3.13)
171
+ rspec-mocks (~> 3.13)
172
+ rspec-support (~> 3.13)
173
+ rspec-support (3.13.2)
174
+ rubocop (1.71.2)
175
+ json (~> 2.3)
176
+ language_server-protocol (>= 3.17.0)
177
+ parallel (~> 1.10)
178
+ parser (>= 3.3.0.2)
179
+ rainbow (>= 2.2.2, < 4.0)
180
+ regexp_parser (>= 2.9.3, < 3.0)
181
+ rubocop-ast (>= 1.38.0, < 2.0)
182
+ ruby-progressbar (~> 1.7)
183
+ unicode-display_width (>= 2.4.0, < 4.0)
184
+ rubocop-ast (1.38.0)
185
+ parser (>= 3.3.1.0)
186
+ rubocop-performance (1.23.1)
187
+ rubocop (>= 1.48.1, < 2.0)
188
+ rubocop-ast (>= 1.31.1, < 2.0)
189
+ ruby-progressbar (1.13.0)
190
+ sprockets (4.2.1)
191
+ concurrent-ruby (~> 1.0)
192
+ rack (>= 2.2.4, < 4)
193
+ sprockets-rails (3.5.2)
194
+ actionpack (>= 6.1)
195
+ activesupport (>= 6.1)
196
+ sprockets (>= 3.0.0)
197
+ sqlite3 (1.7.3-arm64-darwin)
198
+ standard (1.45.0)
199
+ language_server-protocol (~> 3.17.0.2)
200
+ lint_roller (~> 1.0)
201
+ rubocop (~> 1.71.0)
202
+ standard-custom (~> 1.0.0)
203
+ standard-performance (~> 1.6)
204
+ standard-custom (1.0.2)
205
+ lint_roller (~> 1.0)
206
+ rubocop (~> 1.50)
207
+ standard-performance (1.6.0)
208
+ lint_roller (~> 1.1)
209
+ rubocop-performance (~> 1.23.0)
210
+ thor (1.3.2)
211
+ timeout (0.4.3)
212
+ tzinfo (2.0.6)
213
+ concurrent-ruby (~> 1.0)
214
+ unicode-display_width (3.1.4)
215
+ unicode-emoji (~> 4.0, >= 4.0.4)
216
+ unicode-emoji (4.0.4)
217
+ websocket-driver (0.7.7)
218
+ base64
219
+ websocket-extensions (>= 0.1.0)
220
+ websocket-extensions (0.1.5)
221
+ zeitwerk (2.6.18)
222
+
223
+ PLATFORMS
224
+ arm64-darwin
225
+
226
+ DEPENDENCIES
227
+ appraisal (~> 2.5)
228
+ concurrent-ruby (= 1.3.4)
229
+ mysql2 (~> 0.5.6)
230
+ pg (~> 1.5.4)
231
+ rack
232
+ rails (~> 6.1.0)
233
+ rails_api_logger!
234
+ rake (~> 12.0)
235
+ rspec-rails (~> 6.1.0)
236
+ sqlite3 (~> 1.7.3)
237
+ standard (~> 1.31)
238
+
239
+ BUNDLED WITH
240
+ 2.5.4
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "concurrent-ruby", "1.3.4"
6
+ gem "rails", "~> 7.0.0"
7
+ gem "rspec-rails", "~> 7.1.0"
8
+ gem "sqlite3", "~> 1.7.3"
9
+
10
+ gemspec path: "../"