n_plus_one_control 0.0.3 → 0.1.0
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/.gitignore +2 -0
- data/README.md +5 -0
- data/lib/n_plus_one_control/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b4b5b38f18b1d7d94f76b99d0216d3b1d1b225a3
|
|
4
|
+
data.tar.gz: 330c6357336339f3229cbaf7a06ff33c80d9eb9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7dad1629e6b28294d284e894a3257e7503a068271cb237fcc0cf2d9a6823663dc4f34d245700d1b384b2107e11e590f25ecaa364b961de257d2b09f75119a0a
|
|
7
|
+
data.tar.gz: c6eae0b22abda58185cebac88583386cee9c4a78c9b463428ce83b50e762680a9ad8c0cad7aa0e672f6e86fcc42ddc1fed1114b78396d2bec164b15873908948
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://rubygems.org/gems/n_plus_one_control) [](https://travis-ci.org/palkan/n_plus_one_control)
|
|
2
|
+
|
|
1
3
|
# N + 1 Control
|
|
2
4
|
|
|
3
5
|
RSpec and Minitest matchers to prevent the N+1 queries problem.
|
|
@@ -16,6 +18,9 @@ Of course, it's possible to use Bullet in tests (see more [here](https://evilmar
|
|
|
16
18
|
|
|
17
19
|
This gem was born after I've found myself not able to verify with a test yet another N+1 problem.
|
|
18
20
|
|
|
21
|
+
<a href="https://evilmartians.com/">
|
|
22
|
+
<img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg" alt="Sponsored by Evil Martians" width="236" height="54"></a>
|
|
23
|
+
|
|
19
24
|
## Installation
|
|
20
25
|
|
|
21
26
|
Add this line to your application's Gemfile:
|