activerecord-explainer 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +3 -3
- data/activerecord-explainer.gemspec +2 -2
- data/lib/activerecord/explainer/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e173dbef964783ab1911392843b91108a5b6757fa8030e88d786b47a8ab12977
|
4
|
+
data.tar.gz: 2b00e02b4079f79d587776f59f672403f2dace10b96a6ed381e41790b68ee26c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a1ccc263b7941808dd1dabf4383e1f893261ef6f520d22f0330d31bc7937565548e9f060c5bce167d3defd7823753d362148c73604fac7fbc39729224d7ad6b
|
7
|
+
data.tar.gz: 82fdfd609ff664c60f50f840b6f0dd9ef0d316505118db56c2631f7d0b88ae44ae9963a33c5db3886040c1bcdf6791171f8305090f2090bed35fe0cd566bc430
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# ActiveRecord::Explainer
|
2
2
|
|
3
|
-
|
3
|
+
This gem automatically logs `SQL EXPLAIN` of every queries.
|
4
4
|
|
5
|
-
You can check every SQL EXPLAIN from development log, without :hand: executions.
|
5
|
+
You can check naturally every SQL EXPLAIN from development log, without :hand: executions.
|
6
6
|
|
7
7
|
## Usage
|
8
8
|
|
9
|
-
|
9
|
+
If you use Rails, it's no configuration, and you can logs SQL EXPLAIN of every queries.
|
10
10
|
|
11
11
|
![](https://github.com/yhirano55/activerecord-explainer/blob/master/images/v0.2.0.png?raw=true)
|
12
12
|
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.authors = ['Yoshiyuki Hirano']
|
11
11
|
s.email = ['yhirano@me.com']
|
12
12
|
s.homepage = 'https://github.com/yhirano55/activerecord-explainer'
|
13
|
-
s.summary = %(
|
14
|
-
s.description =
|
13
|
+
s.summary = %(This gem automatically logs SQL EXPLAIN of every queries)
|
14
|
+
s.description = %(This gem automatically logs SQL EXPLAIN of every queries. You can check naturally every SQL EXPLAIN from development log, without manually executions.)
|
15
15
|
s.license = 'MIT'
|
16
16
|
s.files = Dir.chdir(File.expand_path('.', __dir__)) do
|
17
17
|
`git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-explainer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yoshiyuki Hirano
|
@@ -80,7 +80,8 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '3.0'
|
83
|
-
description:
|
83
|
+
description: This gem automatically logs SQL EXPLAIN of every queries. You can check
|
84
|
+
naturally every SQL EXPLAIN from development log, without manually executions.
|
84
85
|
email:
|
85
86
|
- yhirano@me.com
|
86
87
|
executables: []
|
@@ -127,5 +128,5 @@ requirements: []
|
|
127
128
|
rubygems_version: 3.0.3
|
128
129
|
signing_key:
|
129
130
|
specification_version: 4
|
130
|
-
summary:
|
131
|
+
summary: This gem automatically logs SQL EXPLAIN of every queries
|
131
132
|
test_files: []
|