query_track 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +2 -2
- data/Gemfile.lock +59 -39
- data/lib/query_track/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8997ac151ffa4e1c33d1ca6e741a5f698145a10cf54dc4d32a16a7100a4439bf
|
4
|
+
data.tar.gz: 338db7b3f44fce48820d284ba2461ff1314ae52c3424c9bc05e166bc9e4a43d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0dc513fa7464670332a5270e5bc504d6c3b9e47e1ba49e1f06300bedcacfeeba3d3de7411daab7490e2a9dc9a208e15100673ff78046025bc34a6b23e0ed825e
|
7
|
+
data.tar.gz: 3383e7bff6447bfbaa0527c55c2eb97d1b3de457edfa4ed81fc63c95589e99f4eabb19c01f132ff271f1e2f2a0dfd01857fd5c38835bd386900ce5854b26842b
|
data/.github/workflows/ruby.yml
CHANGED
@@ -9,10 +9,10 @@ jobs:
|
|
9
9
|
|
10
10
|
steps:
|
11
11
|
- uses: actions/checkout@v1
|
12
|
-
- name: Set up Ruby 2.
|
12
|
+
- name: Set up Ruby 2.7
|
13
13
|
uses: actions/setup-ruby@v1
|
14
14
|
with:
|
15
|
-
ruby-version: 2.
|
15
|
+
ruby-version: 2.7.x
|
16
16
|
- name: Build and test with Rake
|
17
17
|
run: |
|
18
18
|
gem install bundler
|
data/Gemfile.lock
CHANGED
@@ -9,59 +9,79 @@ PATH
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
activesupport (7.
|
12
|
+
activesupport (7.1.3)
|
13
|
+
base64
|
14
|
+
bigdecimal
|
13
15
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
16
|
+
connection_pool (>= 2.2.5)
|
17
|
+
drb
|
14
18
|
i18n (>= 1.6, < 2)
|
15
19
|
minitest (>= 5.1)
|
20
|
+
mutex_m
|
16
21
|
tzinfo (~> 2.0)
|
17
|
-
ast (2.4.
|
22
|
+
ast (2.4.2)
|
23
|
+
base64 (0.2.0)
|
24
|
+
bigdecimal (3.1.6)
|
18
25
|
byebug (11.1.3)
|
19
|
-
concurrent-ruby (1.
|
20
|
-
|
21
|
-
|
26
|
+
concurrent-ruby (1.2.3)
|
27
|
+
connection_pool (2.4.1)
|
28
|
+
diff-lcs (1.5.1)
|
29
|
+
drb (2.2.0)
|
30
|
+
ruby2_keywords
|
31
|
+
dry-configurable (1.1.0)
|
32
|
+
dry-core (~> 1.0, < 2)
|
33
|
+
zeitwerk (~> 2.6)
|
34
|
+
dry-core (1.0.1)
|
22
35
|
concurrent-ruby (~> 1.0)
|
23
|
-
|
24
|
-
|
36
|
+
zeitwerk (~> 2.6)
|
37
|
+
i18n (1.14.1)
|
25
38
|
concurrent-ruby (~> 1.0)
|
26
|
-
|
27
|
-
|
28
|
-
minitest (5.
|
29
|
-
|
30
|
-
|
39
|
+
json (2.7.1)
|
40
|
+
language_server-protocol (3.17.0.3)
|
41
|
+
minitest (5.22.2)
|
42
|
+
mutex_m (0.2.0)
|
43
|
+
parallel (1.24.0)
|
44
|
+
parser (3.3.0.5)
|
31
45
|
ast (~> 2.4.1)
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
rspec-
|
40
|
-
|
41
|
-
rspec-
|
42
|
-
rspec-
|
46
|
+
racc
|
47
|
+
racc (1.7.3)
|
48
|
+
rainbow (3.1.1)
|
49
|
+
rake (13.1.0)
|
50
|
+
regexp_parser (2.9.0)
|
51
|
+
rexml (3.2.6)
|
52
|
+
rspec (3.13.0)
|
53
|
+
rspec-core (~> 3.13.0)
|
54
|
+
rspec-expectations (~> 3.13.0)
|
55
|
+
rspec-mocks (~> 3.13.0)
|
56
|
+
rspec-core (3.13.0)
|
57
|
+
rspec-support (~> 3.13.0)
|
58
|
+
rspec-expectations (3.13.0)
|
43
59
|
diff-lcs (>= 1.2.0, < 2.0)
|
44
|
-
rspec-support (~> 3.
|
45
|
-
rspec-mocks (3.
|
60
|
+
rspec-support (~> 3.13.0)
|
61
|
+
rspec-mocks (3.13.0)
|
46
62
|
diff-lcs (>= 1.2.0, < 2.0)
|
47
|
-
rspec-support (~> 3.
|
48
|
-
rspec-support (3.
|
49
|
-
rubocop (
|
63
|
+
rspec-support (~> 3.13.0)
|
64
|
+
rspec-support (3.13.0)
|
65
|
+
rubocop (1.60.2)
|
66
|
+
json (~> 2.3)
|
67
|
+
language_server-protocol (>= 3.17.0)
|
50
68
|
parallel (~> 1.10)
|
51
|
-
parser (>=
|
69
|
+
parser (>= 3.3.0.2)
|
52
70
|
rainbow (>= 2.2.2, < 4.0)
|
53
|
-
regexp_parser (>= 1.
|
54
|
-
rexml
|
55
|
-
rubocop-ast (>=
|
71
|
+
regexp_parser (>= 1.8, < 3.0)
|
72
|
+
rexml (>= 3.2.5, < 4.0)
|
73
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
56
74
|
ruby-progressbar (~> 1.7)
|
57
|
-
unicode-display_width (>=
|
58
|
-
rubocop-ast (
|
59
|
-
parser (>= 2.
|
60
|
-
ruby-progressbar (1.
|
75
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
76
|
+
rubocop-ast (1.30.0)
|
77
|
+
parser (>= 3.2.1.0)
|
78
|
+
ruby-progressbar (1.13.0)
|
79
|
+
ruby2_keywords (0.0.5)
|
61
80
|
slack_hook (0.1.2)
|
62
|
-
tzinfo (2.0.
|
81
|
+
tzinfo (2.0.6)
|
63
82
|
concurrent-ruby (~> 1.0)
|
64
|
-
unicode-display_width (
|
83
|
+
unicode-display_width (2.5.0)
|
84
|
+
zeitwerk (2.6.13)
|
65
85
|
|
66
86
|
PLATFORMS
|
67
87
|
ruby
|
@@ -75,4 +95,4 @@ DEPENDENCIES
|
|
75
95
|
rubocop
|
76
96
|
|
77
97
|
BUNDLED WITH
|
78
|
-
|
98
|
+
2.4.19
|
data/lib/query_track/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: query_track
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kirill Shevchenko
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
173
|
- !ruby/object:Gem::Version
|
174
174
|
version: '0'
|
175
175
|
requirements: []
|
176
|
-
rubygems_version: 3.
|
176
|
+
rubygems_version: 3.4.10
|
177
177
|
signing_key:
|
178
178
|
specification_version: 4
|
179
179
|
summary: Finding time-consuming database queries for ActiveRecord-based Rails Apps
|