fibered_mysql2 0.4.0.pre.tstarck.3 → 1.0.0.colin.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: 0fcddd19ebaa9bb4c2bcfba7bcb7862b9fb07a31ef4ecd122d46c345a563f8ec
4
- data.tar.gz: 65666da2f04f234f15e8945f8b693341599c478a471756963091c19c6391f770
3
+ metadata.gz: 75d1eaf3701caa8823cdfbec61e7d9734d1e5f463e7936010c5636715591c2c9
4
+ data.tar.gz: 715db9f2e07df69a6cf51a2389404f030cd9c257524544cb77c16f53de36b944
5
5
  SHA512:
6
- metadata.gz: fdcc099c7c98ec0860a198d7ede37859c1c060c791f2fa33acb8659b02fabdc64f675fcbdc3cb4b555a3f40a3466945b15ebe586a14311ff70eb443e92ad30be
7
- data.tar.gz: 755c58904cdd0405c464ba49f662b00c1747a30c61672472a683d17a8c6432e20d3c8c695ca82f34d2d4797c66741d7381ead66084478d634a04f187112c1b02
6
+ metadata.gz: 9a21b639b0b0ab6afcb558978a7e1060510e7fc7ca5e9a833b27d2b8c9eb49d023ac5beb5e0c500c3a3ff711d7f6ee0e49ae61f4e72f941c7a07420f60b9c866
7
+ data.tar.gz: 99adce5422229bdea37a08ed76a4dad71c6f4108ce3588d42dadc3b6c6fbb2895f65532842739dbe83cd7d6c748ea4b0cf7d57d05ca8fc26cbd0c6e65ab17e41
@@ -0,0 +1 @@
1
+ * @Invoca/octothorpe
@@ -8,11 +8,11 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- ruby: [3.1, 3.2, 3.3, 3.4]
11
+ ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
12
12
  gemfile:
13
13
  - Gemfile
14
- - gemfiles/rails_7_0.gemfile
15
- - gemfiles/rails_7_1.gemfile
14
+ - gemfiles/rails_5.gemfile
15
+ - gemfiles/rails_6.gemfile
16
16
  env:
17
17
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
18
18
  steps:
@@ -20,5 +20,6 @@ jobs:
20
20
  - uses: ruby/setup-ruby@v1
21
21
  with:
22
22
  ruby-version: ${{ matrix.ruby }}
23
+ bundler: 2.2.29
23
24
  bundler-cache: true
24
25
  - run: bundle exec rspec
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.3.8
1
+ 3.2.1
data/Appraisals CHANGED
@@ -1,11 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "appraisal/matrix"
3
+ appraise 'rails-5' do
4
+ gem 'rails', '~> 5.2'
5
+ end
4
6
 
5
- appraisal_matrix(rails: [">= 7.0", "< 7.2"]) do |rails:|
6
- if rails < "7.1"
7
- gem "mutex_m"
8
- gem "base64"
9
- gem "bigdecimal"
10
- end
7
+ appraise 'rails-6' do
8
+ gem 'rails', '~> 6.0.0'
11
9
  end
data/CHANGELOG.md CHANGED
@@ -4,42 +4,6 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
4
4
 
5
5
  Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
- ## [0.4.0] - Unreleased
8
- ### Added
9
- - Support for Rails 7.1
10
-
11
- ### Removed
12
- - Removed support for Rails 6.1 and below.
13
-
14
- ### Changed
15
- #### FiberedMysql2Adapter
16
- - Updated to no longer include EM::Synchrony::ActiveRecord::Adapter_4_2 as it is no longer necessary.
17
- - Removed TransactionManager overrides as they are no longer necessary.
18
-
19
- #### FiberedMysql2::FiberedDatabaseConnectionPool
20
- - Updated to only override methods needed in Rails 7.0.
21
- - Removed double-checking in #connection for cached connection.
22
- - Updated #checkout patch to use #reap instead of our custom #reaped_connections method.
23
-
24
- ## [0.3.1] - 2024-10-30
25
- ### Fixed
26
- - Fixed bug in FiberedMysqlAdapter.new_client that was causing `uninitialized constant` errors.
27
-
28
- ## [0.3.0] - 2024-10-23
29
- ### Added
30
- - Support for Rails 7.0.
31
-
32
- ### Removed
33
- - Removed support for Rails 6.0 and Rails 5.
34
-
35
- ### Changed
36
- - Clean up FiberedMysql2ConnectionFactory#fibered_mysql2_connection to better match Mysql2Adapter behavior.
37
- - Change FiberedMysql2::FiberedDatabaseConnectionPool#initialize to match ActiveRecord::ConnectionAdapters::ConnectionPool#initialize arguments.
38
-
39
- ## [0.2.1] - 2024-08-19
40
- ### Fixed
41
- - Fixed bugs in Rails 6.1
42
-
43
7
  ## [0.2.0] - 2023-01-12
44
8
  ### Added
45
9
  - Added support for Rails 6+ by adding knowledge of lazy transactions to the adapter.
data/Gemfile CHANGED
@@ -6,10 +6,11 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
6
6
  gemspec
7
7
 
8
8
  gem 'appraisal'
9
- gem 'appraisal-matrix'
9
+ gem 'coveralls', require: false
10
10
  gem 'mysql2', '~> 0.5'
11
- gem 'nokogiri'
12
- gem 'pry'
13
- gem 'pry-byebug'
14
- gem 'rake'
15
- gem 'rspec', '~> 3.12.0' # Rspec 3.13 is causing segfaults for some reason in CI...
11
+ gem 'nokogiri', '< 1.13'
12
+ gem 'pry', '~> 0.13'
13
+ gem 'pry-byebug', '~> 3.9'
14
+ gem 'rails', '< 6.1'
15
+ gem 'rake', '~> 13.0'
16
+ gem 'rspec', '~> 3.0'
data/Gemfile.lock CHANGED
@@ -1,247 +1,209 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fibered_mysql2 (0.4.0.pre.tstarck.3)
5
- em-synchrony (~> 1.0)
6
- rails (>= 7.0, < 7.2)
4
+ fibered_mysql2 (1.0.0.colin.1)
5
+ async
6
+ rails (>= 5.2, < 7)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (7.1.5.1)
12
- actionpack (= 7.1.5.1)
13
- activesupport (= 7.1.5.1)
11
+ actioncable (6.0.3.4)
12
+ actionpack (= 6.0.3.4)
14
13
  nio4r (~> 2.0)
15
14
  websocket-driver (>= 0.6.1)
16
- zeitwerk (~> 2.6)
17
- actionmailbox (7.1.5.1)
18
- actionpack (= 7.1.5.1)
19
- activejob (= 7.1.5.1)
20
- activerecord (= 7.1.5.1)
21
- activestorage (= 7.1.5.1)
22
- activesupport (= 7.1.5.1)
15
+ actionmailbox (6.0.3.4)
16
+ actionpack (= 6.0.3.4)
17
+ activejob (= 6.0.3.4)
18
+ activerecord (= 6.0.3.4)
19
+ activestorage (= 6.0.3.4)
20
+ activesupport (= 6.0.3.4)
23
21
  mail (>= 2.7.1)
24
- net-imap
25
- net-pop
26
- net-smtp
27
- actionmailer (7.1.5.1)
28
- actionpack (= 7.1.5.1)
29
- actionview (= 7.1.5.1)
30
- activejob (= 7.1.5.1)
31
- activesupport (= 7.1.5.1)
22
+ actionmailer (6.0.3.4)
23
+ actionpack (= 6.0.3.4)
24
+ actionview (= 6.0.3.4)
25
+ activejob (= 6.0.3.4)
32
26
  mail (~> 2.5, >= 2.5.4)
33
- net-imap
34
- net-pop
35
- net-smtp
36
- rails-dom-testing (~> 2.2)
37
- actionpack (7.1.5.1)
38
- actionview (= 7.1.5.1)
39
- activesupport (= 7.1.5.1)
40
- nokogiri (>= 1.8.5)
41
- racc
42
- rack (>= 2.2.4)
43
- rack-session (>= 1.0.1)
27
+ rails-dom-testing (~> 2.0)
28
+ actionpack (6.0.3.4)
29
+ actionview (= 6.0.3.4)
30
+ activesupport (= 6.0.3.4)
31
+ rack (~> 2.0, >= 2.0.8)
44
32
  rack-test (>= 0.6.3)
45
- rails-dom-testing (~> 2.2)
46
- rails-html-sanitizer (~> 1.6)
47
- actiontext (7.1.5.1)
48
- actionpack (= 7.1.5.1)
49
- activerecord (= 7.1.5.1)
50
- activestorage (= 7.1.5.1)
51
- activesupport (= 7.1.5.1)
52
- globalid (>= 0.6.0)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
35
+ actiontext (6.0.3.4)
36
+ actionpack (= 6.0.3.4)
37
+ activerecord (= 6.0.3.4)
38
+ activestorage (= 6.0.3.4)
39
+ activesupport (= 6.0.3.4)
53
40
  nokogiri (>= 1.8.5)
54
- actionview (7.1.5.1)
55
- activesupport (= 7.1.5.1)
41
+ actionview (6.0.3.4)
42
+ activesupport (= 6.0.3.4)
56
43
  builder (~> 3.1)
57
- erubi (~> 1.11)
58
- rails-dom-testing (~> 2.2)
59
- rails-html-sanitizer (~> 1.6)
60
- activejob (7.1.5.1)
61
- activesupport (= 7.1.5.1)
44
+ erubi (~> 1.4)
45
+ rails-dom-testing (~> 2.0)
46
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
47
+ activejob (6.0.3.4)
48
+ activesupport (= 6.0.3.4)
62
49
  globalid (>= 0.3.6)
63
- activemodel (7.1.5.1)
64
- activesupport (= 7.1.5.1)
65
- activerecord (7.1.5.1)
66
- activemodel (= 7.1.5.1)
67
- activesupport (= 7.1.5.1)
68
- timeout (>= 0.4.0)
69
- activestorage (7.1.5.1)
70
- actionpack (= 7.1.5.1)
71
- activejob (= 7.1.5.1)
72
- activerecord (= 7.1.5.1)
73
- activesupport (= 7.1.5.1)
74
- marcel (~> 1.0)
75
- activesupport (7.1.5.1)
76
- base64
77
- benchmark (>= 0.3)
78
- bigdecimal
50
+ activemodel (6.0.3.4)
51
+ activesupport (= 6.0.3.4)
52
+ activerecord (6.0.3.4)
53
+ activemodel (= 6.0.3.4)
54
+ activesupport (= 6.0.3.4)
55
+ activestorage (6.0.3.4)
56
+ actionpack (= 6.0.3.4)
57
+ activejob (= 6.0.3.4)
58
+ activerecord (= 6.0.3.4)
59
+ marcel (~> 0.3.1)
60
+ activesupport (6.0.3.4)
79
61
  concurrent-ruby (~> 1.0, >= 1.0.2)
80
- connection_pool (>= 2.2.5)
81
- drb
82
- i18n (>= 1.6, < 2)
83
- logger (>= 1.4.2)
84
- minitest (>= 5.1)
85
- mutex_m
86
- securerandom (>= 0.3)
87
- tzinfo (~> 2.0)
88
- appraisal (2.5.0)
62
+ i18n (>= 0.7, < 2)
63
+ minitest (~> 5.1)
64
+ tzinfo (~> 1.1)
65
+ zeitwerk (~> 2.2, >= 2.2.2)
66
+ appraisal (2.4.0)
89
67
  bundler
90
68
  rake
91
69
  thor (>= 0.14.0)
92
- appraisal-matrix (0.3.0)
93
- appraisal (~> 2.2)
94
- base64 (0.3.0)
95
- benchmark (0.4.1)
96
- bigdecimal (3.2.2)
97
- builder (3.3.0)
98
- byebug (12.0.0)
99
- cgi (0.5.0)
70
+ async (2.5.1)
71
+ console (~> 1.10)
72
+ io-event (~> 1.1)
73
+ timers (~> 4.1)
74
+ builder (3.2.4)
75
+ byebug (11.1.3)
100
76
  coderay (1.1.3)
101
- concurrent-ruby (1.3.5)
102
- connection_pool (2.5.3)
77
+ concurrent-ruby (1.1.8)
78
+ console (1.16.2)
79
+ fiber-local
80
+ coveralls (0.8.23)
81
+ json (>= 1.8, < 3)
82
+ simplecov (~> 0.16.1)
83
+ term-ansicolor (~> 1.3)
84
+ thor (>= 0.19.4, < 2.0)
85
+ tins (~> 1.6)
103
86
  crass (1.0.6)
104
- date (3.4.1)
105
- diff-lcs (1.6.2)
106
- drb (2.2.3)
107
- em-synchrony (1.0.6)
108
- eventmachine (>= 1.0.0.beta.1)
109
- erb (4.0.4)
110
- cgi (>= 0.3.3)
111
- erubi (1.13.1)
112
- eventmachine (1.2.7)
113
- globalid (1.2.1)
114
- activesupport (>= 6.1)
115
- i18n (1.14.7)
87
+ diff-lcs (1.4.4)
88
+ docile (1.3.2)
89
+ erubi (1.10.0)
90
+ fiber-local (1.0.0)
91
+ globalid (0.4.2)
92
+ activesupport (>= 4.2.0)
93
+ i18n (1.8.7)
116
94
  concurrent-ruby (~> 1.0)
117
- io-console (0.8.1)
118
- irb (1.15.2)
119
- pp (>= 0.6.0)
120
- rdoc (>= 4.0.0)
121
- reline (>= 0.4.2)
122
- logger (1.7.0)
123
- loofah (2.24.1)
95
+ io-event (1.2.2)
96
+ json (2.3.1)
97
+ loofah (2.8.0)
124
98
  crass (~> 1.0.2)
125
- nokogiri (>= 1.12.0)
126
- mail (2.8.1)
99
+ nokogiri (>= 1.5.9)
100
+ mail (2.7.1)
127
101
  mini_mime (>= 0.1.1)
128
- net-imap
129
- net-pop
130
- net-smtp
131
- marcel (1.0.4)
132
- method_source (1.1.0)
133
- mini_mime (1.1.5)
134
- mini_portile2 (2.8.9)
135
- minitest (5.25.5)
136
- mutex_m (0.3.0)
137
- mysql2 (0.5.6)
138
- net-imap (0.5.9)
139
- date
140
- net-protocol
141
- net-pop (0.1.2)
142
- net-protocol
143
- net-protocol (0.2.2)
144
- timeout
145
- net-smtp (0.5.1)
146
- net-protocol
147
- nio4r (2.7.4)
148
- nokogiri (1.18.9)
149
- mini_portile2 (~> 2.8.2)
102
+ marcel (0.3.3)
103
+ mimemagic (~> 0.3.2)
104
+ method_source (1.0.0)
105
+ mimemagic (0.3.10)
106
+ nokogiri (~> 1)
107
+ rake
108
+ mini_mime (1.0.2)
109
+ mini_portile2 (2.6.1)
110
+ minitest (5.14.3)
111
+ mysql2 (0.5.5)
112
+ nio4r (2.5.4)
113
+ nokogiri (1.12.5)
114
+ mini_portile2 (~> 2.6.1)
150
115
  racc (~> 1.4)
151
- pp (0.6.2)
152
- prettyprint
153
- prettyprint (0.2.0)
154
- pry (0.15.2)
116
+ pry (0.13.1)
155
117
  coderay (~> 1.1)
156
118
  method_source (~> 1.0)
157
- pry-byebug (3.11.0)
158
- byebug (~> 12.0)
159
- pry (>= 0.13, < 0.16)
160
- psych (5.2.6)
161
- date
162
- stringio
163
- racc (1.8.1)
164
- rack (3.2.0)
165
- rack-session (2.1.1)
166
- base64 (>= 0.1.0)
167
- rack (>= 3.0.0)
168
- rack-test (2.2.0)
169
- rack (>= 1.3)
170
- rackup (2.2.1)
171
- rack (>= 3)
172
- rails (7.1.5.1)
173
- actioncable (= 7.1.5.1)
174
- actionmailbox (= 7.1.5.1)
175
- actionmailer (= 7.1.5.1)
176
- actionpack (= 7.1.5.1)
177
- actiontext (= 7.1.5.1)
178
- actionview (= 7.1.5.1)
179
- activejob (= 7.1.5.1)
180
- activemodel (= 7.1.5.1)
181
- activerecord (= 7.1.5.1)
182
- activestorage (= 7.1.5.1)
183
- activesupport (= 7.1.5.1)
184
- bundler (>= 1.15.0)
185
- railties (= 7.1.5.1)
186
- rails-dom-testing (2.3.0)
187
- activesupport (>= 5.0.0)
188
- minitest
119
+ pry-byebug (3.9.0)
120
+ byebug (~> 11.0)
121
+ pry (~> 0.13.0)
122
+ racc (1.6.0)
123
+ rack (2.2.3)
124
+ rack-test (1.1.0)
125
+ rack (>= 1.0, < 3)
126
+ rails (6.0.3.4)
127
+ actioncable (= 6.0.3.4)
128
+ actionmailbox (= 6.0.3.4)
129
+ actionmailer (= 6.0.3.4)
130
+ actionpack (= 6.0.3.4)
131
+ actiontext (= 6.0.3.4)
132
+ actionview (= 6.0.3.4)
133
+ activejob (= 6.0.3.4)
134
+ activemodel (= 6.0.3.4)
135
+ activerecord (= 6.0.3.4)
136
+ activestorage (= 6.0.3.4)
137
+ activesupport (= 6.0.3.4)
138
+ bundler (>= 1.3.0)
139
+ railties (= 6.0.3.4)
140
+ sprockets-rails (>= 2.0.0)
141
+ rails-dom-testing (2.0.3)
142
+ activesupport (>= 4.2.0)
189
143
  nokogiri (>= 1.6)
190
- rails-html-sanitizer (1.6.2)
191
- loofah (~> 2.21)
192
- 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)
193
- railties (7.1.5.1)
194
- actionpack (= 7.1.5.1)
195
- activesupport (= 7.1.5.1)
196
- irb
197
- rackup (>= 1.0.0)
198
- rake (>= 12.2)
199
- thor (~> 1.0, >= 1.2.2)
200
- zeitwerk (~> 2.6)
201
- rake (13.3.0)
202
- rdoc (6.14.2)
203
- erb
204
- psych (>= 4.0.0)
205
- reline (0.6.2)
206
- io-console (~> 0.5)
207
- rspec (3.12.0)
208
- rspec-core (~> 3.12.0)
209
- rspec-expectations (~> 3.12.0)
210
- rspec-mocks (~> 3.12.0)
211
- rspec-core (3.12.3)
212
- rspec-support (~> 3.12.0)
213
- rspec-expectations (3.12.4)
144
+ rails-html-sanitizer (1.3.0)
145
+ loofah (~> 2.3)
146
+ railties (6.0.3.4)
147
+ actionpack (= 6.0.3.4)
148
+ activesupport (= 6.0.3.4)
149
+ method_source
150
+ rake (>= 0.8.7)
151
+ thor (>= 0.20.3, < 2.0)
152
+ rake (13.0.6)
153
+ rspec (3.9.0)
154
+ rspec-core (~> 3.9.0)
155
+ rspec-expectations (~> 3.9.0)
156
+ rspec-mocks (~> 3.9.0)
157
+ rspec-core (3.9.3)
158
+ rspec-support (~> 3.9.3)
159
+ rspec-expectations (3.9.2)
214
160
  diff-lcs (>= 1.2.0, < 2.0)
215
- rspec-support (~> 3.12.0)
216
- rspec-mocks (3.12.7)
161
+ rspec-support (~> 3.9.0)
162
+ rspec-mocks (3.9.1)
217
163
  diff-lcs (>= 1.2.0, < 2.0)
218
- rspec-support (~> 3.12.0)
219
- rspec-support (3.12.2)
220
- securerandom (0.4.1)
221
- stringio (3.1.7)
222
- thor (1.4.0)
223
- timeout (0.4.3)
224
- tzinfo (2.0.6)
164
+ rspec-support (~> 3.9.0)
165
+ rspec-support (3.9.3)
166
+ simplecov (0.16.1)
167
+ docile (~> 1.1)
168
+ json (>= 1.8, < 3)
169
+ simplecov-html (~> 0.10.0)
170
+ simplecov-html (0.10.2)
171
+ sprockets (4.0.2)
225
172
  concurrent-ruby (~> 1.0)
226
- websocket-driver (0.8.0)
227
- base64
173
+ rack (> 1, < 3)
174
+ sprockets-rails (3.2.2)
175
+ actionpack (>= 4.0)
176
+ activesupport (>= 4.0)
177
+ sprockets (>= 3.0.0)
178
+ sync (0.5.0)
179
+ term-ansicolor (1.7.1)
180
+ tins (~> 1.0)
181
+ thor (1.0.1)
182
+ thread_safe (0.3.6)
183
+ timers (4.3.5)
184
+ tins (1.25.0)
185
+ sync
186
+ tzinfo (1.2.9)
187
+ thread_safe (~> 0.1)
188
+ websocket-driver (0.7.3)
228
189
  websocket-extensions (>= 0.1.0)
229
190
  websocket-extensions (0.1.5)
230
- zeitwerk (2.6.18)
191
+ zeitwerk (2.4.1)
231
192
 
232
193
  PLATFORMS
233
194
  ruby
234
195
 
235
196
  DEPENDENCIES
236
197
  appraisal
237
- appraisal-matrix
198
+ coveralls
238
199
  fibered_mysql2!
239
200
  mysql2 (~> 0.5)
240
- nokogiri
241
- pry
242
- pry-byebug
243
- rake
244
- rspec (~> 3.12.0)
201
+ nokogiri (< 1.13)
202
+ pry (~> 0.13)
203
+ pry-byebug (~> 3.9)
204
+ rails (< 6.1)
205
+ rake (~> 13.0)
206
+ rspec (~> 3.0)
245
207
 
246
208
  BUNDLED WITH
247
- 2.6.9
209
+ 2.2.29
@@ -29,6 +29,6 @@ Gem::Specification.new do |spec|
29
29
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
30
30
  spec.require_paths = ["lib"]
31
31
 
32
- spec.add_dependency 'em-synchrony', '~> 1.0'
33
- spec.add_dependency 'rails', '>= 7.0', '< 7.2'
32
+ spec.add_dependency 'async'
33
+ spec.add_dependency 'rails', '>= 5.2', '< 7'
34
34
  end
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "coveralls", require: false
7
+ gem "mysql2", "~> 0.5"
8
+ gem "nokogiri", "< 1.13"
9
+ gem "pry", "~> 0.13"
10
+ gem "pry-byebug", "~> 3.9"
11
+ gem "rails", "~> 5.2"
12
+ gem "rake", "~> 13.0"
13
+ gem "rspec", "~> 3.0"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "coveralls", require: false
7
+ gem "mysql2", "~> 0.5"
8
+ gem "nokogiri", "< 1.13"
9
+ gem "pry", "~> 0.13"
10
+ gem "pry-byebug", "~> 3.9"
11
+ gem "rails", "~> 6.0.0"
12
+ gem "rake", "~> 13.0"
13
+ gem "rspec", "~> 3.0"
14
+
15
+ gemspec path: "../"