awesome_explain 1.0.0 → 1.0.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/Gemfile.lock +7 -9
- data/awesome_explain.gemspec +2 -2
- data/lib/awesome_explain/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 86fb5bf3a6f86e0af182fcd492214f16abd1671cd77637d4b5a9b89437eed5a3
|
|
4
|
+
data.tar.gz: f46fb7294fed40491572b5c8b29f987543bdb6f4f9945b6021bc126c689135e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46064bff13384e112257594c2f448703cf280217ca3fb63c383f171ae117072197f6fced1ba8cb9874c582bc316537114082ef79eda052fed1340e5f8e5eb934
|
|
7
|
+
data.tar.gz: 0600f3073d60815c3d4ea4a85436997b15b4807e490726efb1821de8c7090f951a31c80403cd89e82916729bf4230a5c90bad2470bc9c289f79d02adf3e01100
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
awesome_explain (1.0.
|
|
4
|
+
awesome_explain (1.0.1)
|
|
5
5
|
activerecord-import (>= 0.25)
|
|
6
6
|
awesome_print (~> 1.0)
|
|
7
7
|
kaminari (>= 1.0)
|
|
@@ -60,7 +60,7 @@ GEM
|
|
|
60
60
|
activerecord (6.1.0)
|
|
61
61
|
activemodel (= 6.1.0)
|
|
62
62
|
activesupport (= 6.1.0)
|
|
63
|
-
activerecord-import (1.
|
|
63
|
+
activerecord-import (1.2.0)
|
|
64
64
|
activerecord (>= 3.2)
|
|
65
65
|
activestorage (6.1.0)
|
|
66
66
|
actionpack (= 6.1.0)
|
|
@@ -93,8 +93,8 @@ GEM
|
|
|
93
93
|
diff-lcs (1.4.4)
|
|
94
94
|
docile (1.3.5)
|
|
95
95
|
erubi (1.10.0)
|
|
96
|
-
globalid (0.
|
|
97
|
-
activesupport (>=
|
|
96
|
+
globalid (0.5.2)
|
|
97
|
+
activesupport (>= 5.0)
|
|
98
98
|
i18n (1.8.10)
|
|
99
99
|
concurrent-ruby (~> 1.0)
|
|
100
100
|
kaminari (1.2.1)
|
|
@@ -109,7 +109,7 @@ GEM
|
|
|
109
109
|
activerecord
|
|
110
110
|
kaminari-core (= 1.2.1)
|
|
111
111
|
kaminari-core (1.2.1)
|
|
112
|
-
loofah (2.
|
|
112
|
+
loofah (2.12.0)
|
|
113
113
|
crass (~> 1.0.2)
|
|
114
114
|
nokogiri (>= 1.5.9)
|
|
115
115
|
mail (2.7.1)
|
|
@@ -121,7 +121,6 @@ GEM
|
|
|
121
121
|
nokogiri (~> 1)
|
|
122
122
|
rake
|
|
123
123
|
mini_mime (1.1.0)
|
|
124
|
-
mini_portile2 (2.5.3)
|
|
125
124
|
minitest (5.14.4)
|
|
126
125
|
mongo (2.14.0)
|
|
127
126
|
bson (>= 4.8.2, < 5.0.0)
|
|
@@ -129,9 +128,8 @@ GEM
|
|
|
129
128
|
activemodel (>= 5.1, < 6.2)
|
|
130
129
|
mongo (>= 2.10.5, < 3.0.0)
|
|
131
130
|
niceql (0.1.25)
|
|
132
|
-
nio4r (2.5.
|
|
133
|
-
nokogiri (1.
|
|
134
|
-
mini_portile2 (~> 2.5.0)
|
|
131
|
+
nio4r (2.5.8)
|
|
132
|
+
nokogiri (1.12.3-x86_64-darwin)
|
|
135
133
|
racc (~> 1.4)
|
|
136
134
|
pg (1.2.3)
|
|
137
135
|
pry (0.13.1)
|
data/awesome_explain.gemspec
CHANGED
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.authors = ['Ahmed El.Hussaini']
|
|
11
11
|
spec.email = ['aelhussaini@gmail.com']
|
|
12
12
|
|
|
13
|
-
spec.summary = 'Awesome and simple approach to explain Mongoid queries'
|
|
14
|
-
spec.description = '
|
|
13
|
+
spec.summary = 'Awesome and simple approach to explain Mongoid & ActiveRecord queries'
|
|
14
|
+
spec.description = 'AwesomeExplain provides the same APM level of query analysis under your development and test Rails environments.'
|
|
15
15
|
spec.homepage = 'https://github.com/sandboxws/awesome_explain'
|
|
16
16
|
spec.license = 'MIT'
|
|
17
17
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: awesome_explain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ahmed El.Hussaini
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-08-
|
|
11
|
+
date: 2021-08-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: awesome_print
|
|
@@ -276,8 +276,8 @@ dependencies:
|
|
|
276
276
|
- - ">="
|
|
277
277
|
- !ruby/object:Gem::Version
|
|
278
278
|
version: 0.9.1
|
|
279
|
-
description:
|
|
280
|
-
|
|
279
|
+
description: AwesomeExplain provides the same APM level of query analysis under your
|
|
280
|
+
development and test Rails environments.
|
|
281
281
|
email:
|
|
282
282
|
- aelhussaini@gmail.com
|
|
283
283
|
executables: []
|
|
@@ -385,5 +385,5 @@ requirements: []
|
|
|
385
385
|
rubygems_version: 3.2.15
|
|
386
386
|
signing_key:
|
|
387
387
|
specification_version: 4
|
|
388
|
-
summary: Awesome and simple approach to explain Mongoid queries
|
|
388
|
+
summary: Awesome and simple approach to explain Mongoid & ActiveRecord queries
|
|
389
389
|
test_files: []
|