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 +4 -4
- data/.github/CODEOWNERS +1 -0
- data/.github/workflows/build.yml +4 -3
- data/.ruby-version +1 -1
- data/Appraisals +5 -7
- data/CHANGELOG.md +0 -36
- data/Gemfile +7 -6
- data/Gemfile.lock +166 -204
- data/fibered_mysql2.gemspec +2 -2
- data/gemfiles/rails_5.gemfile +15 -0
- data/gemfiles/rails_6.gemfile +15 -0
- data/lib/active_record/connection_adapters/fibered_mysql2_adapter.rb +32 -132
- data/lib/fibered_mysql2/async_task.rb +18 -0
- data/lib/fibered_mysql2/fibered_database_connection_pool.rb +44 -217
- data/lib/fibered_mysql2/fibered_mysql2_connection_factory.rb +14 -8
- data/lib/fibered_mysql2/version.rb +1 -1
- data/lib/fibered_mysql2.rb +1 -1
- metadata +18 -18
- data/gemfiles/.bundle/config +0 -2
- data/gemfiles/rails_7_0.gemfile +0 -18
- data/gemfiles/rails_7_1.gemfile +0 -15
- data/lib/fibered_mysql2/hash_config_override.rb +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75d1eaf3701caa8823cdfbec61e7d9734d1e5f463e7936010c5636715591c2c9
|
4
|
+
data.tar.gz: 715db9f2e07df69a6cf51a2389404f030cd9c257524544cb77c16f53de36b944
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a21b639b0b0ab6afcb558978a7e1060510e7fc7ca5e9a833b27d2b8c9eb49d023ac5beb5e0c500c3a3ff711d7f6ee0e49ae61f4e72f941c7a07420f60b9c866
|
7
|
+
data.tar.gz: 99adce5422229bdea37a08ed76a4dad71c6f4108ce3588d42dadc3b6c6fbb2895f65532842739dbe83cd7d6c748ea4b0cf7d57d05ca8fc26cbd0c6e65ab17e41
|
data/.github/CODEOWNERS
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
* @Invoca/octothorpe
|
data/.github/workflows/build.yml
CHANGED
@@ -8,11 +8,11 @@ jobs:
|
|
8
8
|
strategy:
|
9
9
|
fail-fast: false
|
10
10
|
matrix:
|
11
|
-
ruby: [
|
11
|
+
ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
|
12
12
|
gemfile:
|
13
13
|
- Gemfile
|
14
|
-
- gemfiles/
|
15
|
-
- gemfiles/
|
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.
|
1
|
+
3.2.1
|
data/Appraisals
CHANGED
@@ -1,11 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
appraise 'rails-5' do
|
4
|
+
gem 'rails', '~> 5.2'
|
5
|
+
end
|
4
6
|
|
5
|
-
|
6
|
-
|
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 '
|
9
|
+
gem 'coveralls', require: false
|
10
10
|
gem 'mysql2', '~> 0.5'
|
11
|
-
gem 'nokogiri'
|
12
|
-
gem 'pry'
|
13
|
-
gem 'pry-byebug'
|
14
|
-
gem '
|
15
|
-
gem '
|
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.
|
5
|
-
|
6
|
-
rails (>=
|
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 (
|
12
|
-
actionpack (=
|
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
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
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
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
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
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
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.
|
46
|
-
rails-html-sanitizer (~> 1.
|
47
|
-
actiontext (
|
48
|
-
actionpack (=
|
49
|
-
activerecord (=
|
50
|
-
activestorage (=
|
51
|
-
activesupport (=
|
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 (
|
55
|
-
activesupport (=
|
41
|
+
actionview (6.0.3.4)
|
42
|
+
activesupport (= 6.0.3.4)
|
56
43
|
builder (~> 3.1)
|
57
|
-
erubi (~> 1.
|
58
|
-
rails-dom-testing (~> 2.
|
59
|
-
rails-html-sanitizer (~> 1.
|
60
|
-
activejob (
|
61
|
-
activesupport (=
|
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 (
|
64
|
-
activesupport (=
|
65
|
-
activerecord (
|
66
|
-
activemodel (=
|
67
|
-
activesupport (=
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
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
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
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
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
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.
|
102
|
-
|
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
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
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-
|
118
|
-
|
119
|
-
|
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.
|
126
|
-
mail (2.
|
99
|
+
nokogiri (>= 1.5.9)
|
100
|
+
mail (2.7.1)
|
127
101
|
mini_mime (>= 0.1.1)
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
mysql2 (0.5.
|
138
|
-
|
139
|
-
|
140
|
-
|
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
|
-
|
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.
|
158
|
-
byebug (~>
|
159
|
-
pry (
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
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.
|
191
|
-
loofah (~> 2.
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
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.
|
216
|
-
rspec-mocks (3.
|
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.
|
219
|
-
rspec-support (3.
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
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
|
-
|
227
|
-
|
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.
|
191
|
+
zeitwerk (2.4.1)
|
231
192
|
|
232
193
|
PLATFORMS
|
233
194
|
ruby
|
234
195
|
|
235
196
|
DEPENDENCIES
|
236
197
|
appraisal
|
237
|
-
|
198
|
+
coveralls
|
238
199
|
fibered_mysql2!
|
239
200
|
mysql2 (~> 0.5)
|
240
|
-
nokogiri
|
241
|
-
pry
|
242
|
-
pry-byebug
|
243
|
-
|
244
|
-
|
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.
|
209
|
+
2.2.29
|
data/fibered_mysql2.gemspec
CHANGED
@@ -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 '
|
33
|
-
spec.add_dependency 'rails', '>=
|
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: "../"
|