n_plus_one_control 0.0.3 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c24a275d72a208eda2b17b7eb6200eead0dc372a
4
- data.tar.gz: 711bccd2b8d3cd2ebc337a8d9ebfd407933be10d
3
+ metadata.gz: b4b5b38f18b1d7d94f76b99d0216d3b1d1b225a3
4
+ data.tar.gz: 330c6357336339f3229cbaf7a06ff33c80d9eb9f
5
5
  SHA512:
6
- metadata.gz: e35efece4fd758e688bf3d294b26a7071e8d38a2ecfcda7fa3942130398a1578d8c539da171afb529dd4259fff692d42433197169c99b89dc2f12318a53efe7c
7
- data.tar.gz: 83403b68d17b11f8c5261045d599ea64e5e33e1c1e7f4c1d1db345a12ef0b36dd3543866485e601e364a164104c678594b5452188d983fe5208d4e6499b8b8c3
6
+ metadata.gz: e7dad1629e6b28294d284e894a3257e7503a068271cb237fcc0cf2d9a6823663dc4f34d245700d1b384b2107e11e590f25ecaa364b961de257d2b09f75119a0a
7
+ data.tar.gz: c6eae0b22abda58185cebac88583386cee9c4a78c9b463428ce83b50e762680a9ad8c0cad7aa0e672f6e86fcc42ddc1fed1114b78396d2bec164b15873908948
data/.gitignore CHANGED
@@ -7,3 +7,5 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+ /log/
11
+ *.gem
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/n_plus_one_control.svg)](https://rubygems.org/gems/n_plus_one_control) [![Build Status](https://travis-ci.org/palkan/n_plus_one_control.svg?branch=master)](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:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NPlusOneControl
4
- VERSION = "0.0.3"
4
+ VERSION = "0.1.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: n_plus_one_control
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - palkan