activerecord-explainer 0.2.1 → 0.2.2

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: 1378a3a661fa3188e81f5a88f984220c02fa569b266a374d8e7d67b7d9df1a72
4
- data.tar.gz: e637d384520f617da09ea97888a12e1ca7d64672b809838485faae86fe0797ca
3
+ metadata.gz: e173dbef964783ab1911392843b91108a5b6757fa8030e88d786b47a8ab12977
4
+ data.tar.gz: 2b00e02b4079f79d587776f59f672403f2dace10b96a6ed381e41790b68ee26c
5
5
  SHA512:
6
- metadata.gz: 6470d67255d52865a7e57b4b5085c91b35e9561fbfd2ecb94cbed02971fbda3e715d91c196737be260ab61ad81d192b7cb0dbf280ac227f5e86eaa8bca0fe1b1
7
- data.tar.gz: bd7058ac5119c5eb7d809da6d0b0fba9ab5d638279c5fba03a064008080d7a9b24eeca1e608c1c74a37a94a5ab40b24c53102c0ca86914cb7329bf502923b603
6
+ metadata.gz: 2a1ccc263b7941808dd1dabf4383e1f893261ef6f520d22f0330d31bc7937565548e9f060c5bce167d3defd7823753d362148c73604fac7fbc39729224d7ad6b
7
+ data.tar.gz: 82fdfd609ff664c60f50f840b6f0dd9ef0d316505118db56c2631f7d0b88ae44ae9963a33c5db3886040c1bcdf6791171f8305090f2090bed35fe0cd566bc430
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- activerecord-explainer (0.2.1)
4
+ activerecord-explainer (0.2.2)
5
5
  activerecord (>= 5.2)
6
6
  activesupport (>= 5.2)
7
7
 
data/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # ActiveRecord::Explainer
2
2
 
3
- activerecord-explainer logs automatically `SQL EXPLAIN` of every queries.
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
- It's no configuration, and you can puts SQL EXPLAIN of every queries to logs.
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 = %(activerecord-explainer logs automatically SQL EXPLAIN of every queries)
14
- s.description = s.summary
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|
@@ -1,5 +1,5 @@
1
1
  module ActiveRecord
2
2
  module Explainer
3
- VERSION = '0.2.1'.freeze
3
+ VERSION = '0.2.2'.freeze
4
4
  end
5
5
  end
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.1
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: activerecord-explainer logs automatically SQL EXPLAIN of every queries
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: activerecord-explainer logs automatically SQL EXPLAIN of every queries
131
+ summary: This gem automatically logs SQL EXPLAIN of every queries
131
132
  test_files: []