ree_lib 1.0.82 → 1.0.84
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68d91436860401eb57063022aeafa8fafa3f574ce56fe2e19082cf4c6fc42565
|
|
4
|
+
data.tar.gz: 4e5620b188fd303242cc3943f617b83b9c933ceeacc8dd4e07f43f38d4cdda68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7ba357081e00e5d96598a7efe22f17c62fabeafbee66354d02f770f4b3c3f0cf9c337bcf1a52ac94ca60c9706463c163ebfa7b4113dc73e165a62a1f5251d01
|
|
7
|
+
data.tar.gz: 401f407e94dd2f9f540c495ddca201fb762e764d4a5dda6ad130f52211883edd3f3a1ff5b27a84a28ae3ff8e50a73b5ef0152cc86236dd6b84cb92c18f4c1076
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
ree_lib (1.0.
|
|
4
|
+
ree_lib (1.0.84)
|
|
5
5
|
binding_of_caller (~> 1.0.0)
|
|
6
6
|
fiber_scheduler (~> 0.13.0)
|
|
7
7
|
i18n (~> 1.12.0)
|
|
@@ -39,10 +39,10 @@ GEM
|
|
|
39
39
|
loofah (2.18.0)
|
|
40
40
|
crass (~> 1.0.2)
|
|
41
41
|
nokogiri (>= 1.5.9)
|
|
42
|
-
mini_portile2 (2.8.1)
|
|
43
42
|
msgpack (1.6.0)
|
|
44
|
-
nokogiri (1.
|
|
45
|
-
|
|
43
|
+
nokogiri (1.15.5-x86_64-darwin)
|
|
44
|
+
racc (~> 1.4)
|
|
45
|
+
nokogiri (1.15.5-x86_64-linux)
|
|
46
46
|
racc (~> 1.4)
|
|
47
47
|
oj (3.13.23)
|
|
48
48
|
pg (1.4.6)
|
|
@@ -82,9 +82,7 @@ class ReeDao::Agg
|
|
|
82
82
|
|
|
83
83
|
def task_proc(&proc)
|
|
84
84
|
if Sequel.current.is_a?(Fiber)
|
|
85
|
-
Fiber.schedule
|
|
86
|
-
proc.call
|
|
87
|
-
end
|
|
85
|
+
Fiber.schedule(&proc)
|
|
88
86
|
else
|
|
89
87
|
proc.call
|
|
90
88
|
end
|
|
@@ -93,7 +91,7 @@ class ReeDao::Agg
|
|
|
93
91
|
def scheduler_proc(&proc)
|
|
94
92
|
if Sequel.current.is_a?(Fiber)
|
|
95
93
|
FiberScheduler do
|
|
96
|
-
proc
|
|
94
|
+
Fiber.schedule(:waiting, &proc)
|
|
97
95
|
end
|
|
98
96
|
else
|
|
99
97
|
proc.call
|
data/lib/ree_lib/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ree_lib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.84
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ruslan Gatiyatov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-12-
|
|
11
|
+
date: 2023-12-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ree
|