activerecord-count_loader 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +22 -0
  5. data/README.md +72 -0
  6. data/Rakefile +1 -0
  7. data/activerecord-count_loader.gemspec +27 -0
  8. data/lib/active_record/associations/builder/count_loader.rb +13 -0
  9. data/lib/active_record/associations/count_loader.rb +17 -0
  10. data/lib/active_record/associations/preloader/count_loader.rb +54 -0
  11. data/lib/active_record/count_loader/extend.rb +8 -0
  12. data/lib/active_record/count_loader/has_many_extension.rb +25 -0
  13. data/lib/active_record/count_loader/join_dependency_extension.rb +23 -0
  14. data/lib/active_record/count_loader/reflection_extension.rb +46 -0
  15. data/lib/active_record/count_loader/version.rb +5 -0
  16. data/lib/activerecord-count_loader.rb +11 -0
  17. data/sample/.gitignore +16 -0
  18. data/sample/Gemfile +19 -0
  19. data/sample/README.md +6 -0
  20. data/sample/Rakefile +6 -0
  21. data/sample/app/assets/images/.keep +0 -0
  22. data/sample/app/assets/javascripts/application.js +16 -0
  23. data/sample/app/assets/stylesheets/application.css +15 -0
  24. data/sample/app/controllers/application_controller.rb +13 -0
  25. data/sample/app/controllers/concerns/.keep +0 -0
  26. data/sample/app/helpers/application_helper.rb +2 -0
  27. data/sample/app/mailers/.keep +0 -0
  28. data/sample/app/models/.keep +0 -0
  29. data/sample/app/models/concerns/.keep +0 -0
  30. data/sample/app/models/favorite.rb +4 -0
  31. data/sample/app/models/tweet.rb +6 -0
  32. data/sample/app/models/user.rb +4 -0
  33. data/sample/app/views/application/index.html.erb +49 -0
  34. data/sample/app/views/layouts/application.html.erb +14 -0
  35. data/sample/bin/bundle +3 -0
  36. data/sample/bin/rails +8 -0
  37. data/sample/bin/rake +8 -0
  38. data/sample/bin/spring +18 -0
  39. data/sample/config.ru +4 -0
  40. data/sample/config/application.rb +30 -0
  41. data/sample/config/boot.rb +4 -0
  42. data/sample/config/database.yml +11 -0
  43. data/sample/config/environment.rb +5 -0
  44. data/sample/config/environments/development.rb +40 -0
  45. data/sample/config/environments/production.rb +82 -0
  46. data/sample/config/environments/test.rb +39 -0
  47. data/sample/config/initializers/assets.rb +8 -0
  48. data/sample/config/initializers/backtrace_silencers.rb +7 -0
  49. data/sample/config/initializers/cookies_serializer.rb +3 -0
  50. data/sample/config/initializers/filter_parameter_logging.rb +4 -0
  51. data/sample/config/initializers/inflections.rb +16 -0
  52. data/sample/config/initializers/mime_types.rb +4 -0
  53. data/sample/config/initializers/session_store.rb +3 -0
  54. data/sample/config/initializers/wrap_parameters.rb +14 -0
  55. data/sample/config/locales/en.yml +23 -0
  56. data/sample/config/routes.rb +3 -0
  57. data/sample/config/secrets.yml +22 -0
  58. data/sample/db/migrate/20141122002518_create_tweets.rb +10 -0
  59. data/sample/db/migrate/20141122002548_create_favorites.rb +10 -0
  60. data/sample/db/migrate/20141122002555_create_users.rb +8 -0
  61. data/sample/db/schema.rb +35 -0
  62. data/sample/db/seeds.rb +12 -0
  63. data/sample/lib/assets/.keep +0 -0
  64. data/sample/lib/tasks/.keep +0 -0
  65. data/sample/log/.keep +0 -0
  66. data/sample/public/404.html +67 -0
  67. data/sample/public/422.html +67 -0
  68. data/sample/public/500.html +66 -0
  69. data/sample/public/favicon.ico +0 -0
  70. data/sample/public/robots.txt +5 -0
  71. data/sample/vendor/assets/javascripts/.keep +0 -0
  72. data/sample/vendor/assets/stylesheets/.keep +0 -0
  73. metadata +213 -0
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_sample_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ root to: "application#index"
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 28d314a08970538844da396793f403d6dae44570f55c2fcee288ea47a20829067da845fb99581f7b9ab34379bbe478e805784954745a9942c61358ae80c15ab5
15
+
16
+ test:
17
+ secret_key_base: c3030b134537da24186e7d5b6f082fa90fbd39d7cbcfb1e35c65e6717364d0a6b964560a23c08ba5db43e01fa1f1d3ffa7e415cb13baa7fe076fb6b408c0ae65
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,10 @@
1
+ class CreateTweets < ActiveRecord::Migration
2
+ def change
3
+ create_table :tweets do |t|
4
+ t.integer :in_reply_to_tweet_id
5
+ t.integer :user_id
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class CreateFavorites < ActiveRecord::Migration
2
+ def change
3
+ create_table :favorites do |t|
4
+ t.integer :tweet_id
5
+ t.integer :user_id
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,8 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+
5
+ t.timestamps
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,35 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20141122002555) do
15
+
16
+ create_table "favorites", force: true do |t|
17
+ t.integer "tweet_id"
18
+ t.integer "user_id"
19
+ t.datetime "created_at"
20
+ t.datetime "updated_at"
21
+ end
22
+
23
+ create_table "tweets", force: true do |t|
24
+ t.integer "in_reply_to_tweet_id"
25
+ t.integer "user_id"
26
+ t.datetime "created_at"
27
+ t.datetime "updated_at"
28
+ end
29
+
30
+ create_table "users", force: true do |t|
31
+ t.datetime "created_at"
32
+ t.datetime "updated_at"
33
+ end
34
+
35
+ end
@@ -0,0 +1,12 @@
1
+ [Tweet, Favorite, User].map(&:delete_all)
2
+
3
+ (1..5).each do |count|
4
+ user = User.create
5
+ tweet = Tweet.create(user: user)
6
+
7
+ count.times do
8
+ user = User.create
9
+ Favorite.create(tweet: tweet, user: user)
10
+ Tweet.create(in_reply_to: tweet, user: user)
11
+ end
12
+ end
File without changes
File without changes
data/sample/log/.keep ADDED
File without changes
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/404.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The page you were looking for doesn't exist.</h1>
62
+ <p>You may have mistyped the address or the page may have moved.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
File without changes
File without changes
metadata ADDED
@@ -0,0 +1,213 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activerecord-count_loader
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Takashi Kokubun
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activerecord
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 3.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 3.0.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 3.0.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: factory_girl
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 4.2.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 4.2.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: sqlite3
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: bundler
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pry
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: N+1 count query killer for ActiveRecord
112
+ email:
113
+ - takashikkbn@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - ".gitignore"
119
+ - Gemfile
120
+ - LICENSE
121
+ - README.md
122
+ - Rakefile
123
+ - activerecord-count_loader.gemspec
124
+ - lib/active_record/associations/builder/count_loader.rb
125
+ - lib/active_record/associations/count_loader.rb
126
+ - lib/active_record/associations/preloader/count_loader.rb
127
+ - lib/active_record/count_loader/extend.rb
128
+ - lib/active_record/count_loader/has_many_extension.rb
129
+ - lib/active_record/count_loader/join_dependency_extension.rb
130
+ - lib/active_record/count_loader/reflection_extension.rb
131
+ - lib/active_record/count_loader/version.rb
132
+ - lib/activerecord-count_loader.rb
133
+ - sample/.gitignore
134
+ - sample/Gemfile
135
+ - sample/README.md
136
+ - sample/Rakefile
137
+ - sample/app/assets/images/.keep
138
+ - sample/app/assets/javascripts/application.js
139
+ - sample/app/assets/stylesheets/application.css
140
+ - sample/app/controllers/application_controller.rb
141
+ - sample/app/controllers/concerns/.keep
142
+ - sample/app/helpers/application_helper.rb
143
+ - sample/app/mailers/.keep
144
+ - sample/app/models/.keep
145
+ - sample/app/models/concerns/.keep
146
+ - sample/app/models/favorite.rb
147
+ - sample/app/models/tweet.rb
148
+ - sample/app/models/user.rb
149
+ - sample/app/views/application/index.html.erb
150
+ - sample/app/views/layouts/application.html.erb
151
+ - sample/bin/bundle
152
+ - sample/bin/rails
153
+ - sample/bin/rake
154
+ - sample/bin/spring
155
+ - sample/config.ru
156
+ - sample/config/application.rb
157
+ - sample/config/boot.rb
158
+ - sample/config/database.yml
159
+ - sample/config/environment.rb
160
+ - sample/config/environments/development.rb
161
+ - sample/config/environments/production.rb
162
+ - sample/config/environments/test.rb
163
+ - sample/config/initializers/assets.rb
164
+ - sample/config/initializers/backtrace_silencers.rb
165
+ - sample/config/initializers/cookies_serializer.rb
166
+ - sample/config/initializers/filter_parameter_logging.rb
167
+ - sample/config/initializers/inflections.rb
168
+ - sample/config/initializers/mime_types.rb
169
+ - sample/config/initializers/session_store.rb
170
+ - sample/config/initializers/wrap_parameters.rb
171
+ - sample/config/locales/en.yml
172
+ - sample/config/routes.rb
173
+ - sample/config/secrets.yml
174
+ - sample/db/migrate/20141122002518_create_tweets.rb
175
+ - sample/db/migrate/20141122002548_create_favorites.rb
176
+ - sample/db/migrate/20141122002555_create_users.rb
177
+ - sample/db/schema.rb
178
+ - sample/db/seeds.rb
179
+ - sample/lib/assets/.keep
180
+ - sample/lib/tasks/.keep
181
+ - sample/log/.keep
182
+ - sample/public/404.html
183
+ - sample/public/422.html
184
+ - sample/public/500.html
185
+ - sample/public/favicon.ico
186
+ - sample/public/robots.txt
187
+ - sample/vendor/assets/javascripts/.keep
188
+ - sample/vendor/assets/stylesheets/.keep
189
+ homepage: https://github.com/k0kubun/activerecord-count_loader
190
+ licenses:
191
+ - MIT
192
+ metadata: {}
193
+ post_install_message:
194
+ rdoc_options: []
195
+ require_paths:
196
+ - lib
197
+ required_ruby_version: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: 1.9.2
202
+ required_rubygems_version: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ requirements: []
208
+ rubyforge_project:
209
+ rubygems_version: 2.2.2
210
+ signing_key:
211
+ specification_version: 4
212
+ summary: N+1 count query killer for ActiveRecord
213
+ test_files: []