active_record_custom_preloader 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +65 -0
- data/Rakefile +10 -0
- data/active_record_custom_preloader.gemspec +32 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/active_record_custom_preloader/associations_preloader.rb +33 -0
- data/lib/active_record_custom_preloader/model_patch.rb +96 -0
- data/lib/active_record_custom_preloader/preload_with_options.rb +13 -0
- data/lib/active_record_custom_preloader/preloader.rb +23 -0
- data/lib/active_record_custom_preloader/railtie.rb +5 -0
- data/lib/active_record_custom_preloader/relation_patch.rb +16 -0
- data/lib/active_record_custom_preloader/version.rb +3 -0
- data/lib/active_record_custom_preloader.rb +12 -0
- metadata +132 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: ebc260ca02c7f72a2c65f2cb594735d982482108
|
4
|
+
data.tar.gz: 473f45b86356872c382adfde7fa35f7229e5ec38
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 38dd285e78ce11f4d9648db79b56b95c196916bf7b5c7412d1e81ff6eb7c0bd2ad5f888a215be3e96b54e35afae1258f0bc626eb0452bacf00ea06f0a7b96a75
|
7
|
+
data.tar.gz: f4b515d22b3a83e74a57e55ac6ceaf7acc0212e09f27856f3c8c90df9a48c073444deb5e48526e49dfd80fed81ae75c3035c95dac9ed8e3ea06d5c24b6f326c3
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at senid231@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Denis Talakevich
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
# ActiveRecordCustomPreloader
|
2
|
+
|
3
|
+
custom preloader for ActiveRecord model
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'active_record_custom_preloader'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install active_record_custom_preloader
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
class Person < ActiveRecord::Base
|
25
|
+
add_custom_loader :_stats, class_name: 'StatsPreloader'
|
26
|
+
end
|
27
|
+
|
28
|
+
class StatsPreloader < ActiveRecordCustomerPreloader::Preloader
|
29
|
+
def preload(records)
|
30
|
+
ids = records.map(&:id)
|
31
|
+
values = CustomApi.fetch_stats_for(ids)
|
32
|
+
records.each do |record|
|
33
|
+
value = OpenStruct.new(values[record.id])
|
34
|
+
record._set_custom_preloaded_value(name, value)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
people = Person.all.preload(:_stats)
|
40
|
+
people.first._stats # will return value that was preloaded earlier
|
41
|
+
|
42
|
+
person = Person.find(1)
|
43
|
+
person._stats # will preload and return value
|
44
|
+
person._stats # will return value that was preloaded earlier
|
45
|
+
person.clear_custom_preloaded_value(:_stats) # will clear preloaded value for _stats
|
46
|
+
person._stats # will preload again and return value
|
47
|
+
```
|
48
|
+
|
49
|
+
## Development
|
50
|
+
|
51
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
52
|
+
|
53
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
54
|
+
|
55
|
+
## Contributing
|
56
|
+
|
57
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/senid231/active_record_custom_preloader. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
58
|
+
|
59
|
+
## License
|
60
|
+
|
61
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
62
|
+
|
63
|
+
## Code of Conduct
|
64
|
+
|
65
|
+
Everyone interacting in the ActiveRecordCustomPreloader project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/active_record_custom_preloader/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "active_record_custom_preloader/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'active_record_custom_preloader'
|
8
|
+
spec.version = ActiveRecordCustomPreloader::VERSION
|
9
|
+
spec.authors = ['Denis Talakevich']
|
10
|
+
spec.email = ['senid231@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = %q{Custom preloader for ActiveRecord.}
|
13
|
+
spec.description = %q{Custom preloader for ActiveRecord.}
|
14
|
+
spec.homepage = 'https://github.com/senid231/active_record_custom_preloader'
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
# Specify which files should be added to the gem when it is released.
|
18
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
19
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
20
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
21
|
+
end
|
22
|
+
spec.bindir = 'exe'
|
23
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
+
spec.require_paths = ['lib']
|
25
|
+
|
26
|
+
spec.add_dependency 'activesupport'
|
27
|
+
spec.add_dependency 'activerecord'
|
28
|
+
|
29
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
30
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
31
|
+
spec.add_development_dependency 'minitest', '~> 5.0'
|
32
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "active_record_custom_preloader"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'active_record'
|
3
|
+
|
4
|
+
module ActiveRecordCustomPreloader
|
5
|
+
class AssociationsPreloader < ::ActiveRecord::Associations::Preloader
|
6
|
+
private
|
7
|
+
|
8
|
+
def preloaders_on(association, records, scope)
|
9
|
+
if association.is_a?(PreloadWithOptions)
|
10
|
+
preloaders_for_one(association, records, scope)
|
11
|
+
return
|
12
|
+
end
|
13
|
+
|
14
|
+
klass = records.first.class
|
15
|
+
if klass.respond_to?(:has_custom_loader?) && klass.has_custom_loader?(association)
|
16
|
+
association = PreloadWithOptions.new(association)
|
17
|
+
preloaders_for_one(association, records, scope)
|
18
|
+
return
|
19
|
+
end
|
20
|
+
|
21
|
+
super
|
22
|
+
end
|
23
|
+
|
24
|
+
def preloaders_for_one(association, records, scope)
|
25
|
+
if records.size > 0 && association.is_a?(PreloadWithOptions)
|
26
|
+
association.loader_for(records.first.class).preload(records)
|
27
|
+
return
|
28
|
+
end
|
29
|
+
|
30
|
+
super
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,96 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'active_support/concern'
|
3
|
+
require 'active_support/core_ext/class/attribute'
|
4
|
+
|
5
|
+
module ActiveRecordCustomPreloader
|
6
|
+
module ModelPatch
|
7
|
+
extend ActiveSupport::Concern
|
8
|
+
|
9
|
+
included do
|
10
|
+
class_attribute :_custom_loaders, instance_writer: false
|
11
|
+
class_attribute :_default_custom_loader_class, instance_accessor: false
|
12
|
+
self._custom_loaders = {}
|
13
|
+
self._default_custom_loader_class = 'ActiveRecordCustomerPreloader::Preloader'.freeze
|
14
|
+
|
15
|
+
# clear custom preloaded values on model instance reload
|
16
|
+
def reload(*)
|
17
|
+
clear_custom_preloaded_values
|
18
|
+
super
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
class_methods do
|
23
|
+
# add custom preloader for ActiveRecord model
|
24
|
+
# name <Symbol> name of loader [required]
|
25
|
+
# args <Hash> options that will be propagated to preloader (except :skip_methods and :class_name)
|
26
|
+
# args[:skip_methods] <Boolean> will not create method "#{name}" for instance if true (default false)
|
27
|
+
# args[:class_name] <String> class name of preloader (default 'ActiveRecord::CustomerPreloader::Preloader')
|
28
|
+
#
|
29
|
+
def add_custom_loader(name, args = {})
|
30
|
+
skip_methods = args.delete(:skip_methods)
|
31
|
+
class_name = args.delete(:class_name) || _default_custom_loader_class
|
32
|
+
self._custom_loaders = _custom_loaders.merge(name.to_sym => {
|
33
|
+
class_name: class_name,
|
34
|
+
args: args
|
35
|
+
})
|
36
|
+
|
37
|
+
define_method(name) do
|
38
|
+
_custom_preloaded_value(name)
|
39
|
+
end unless skip_methods
|
40
|
+
end
|
41
|
+
|
42
|
+
# find custom loader by name
|
43
|
+
# returns instance of custom loader
|
44
|
+
def custom_loader_for(name, options = {})
|
45
|
+
opts = _custom_loaders[name]
|
46
|
+
raise Error, "custom preloader #{name.inspect} does not exist" if opts.nil?
|
47
|
+
klass = opts[:class_name].safe_constantize
|
48
|
+
raise Error, "custom preloader klass #{opts[:class_name]} can't be found" if klass.nil?
|
49
|
+
klass.new self, name, opts[:args].merge(options)
|
50
|
+
end
|
51
|
+
|
52
|
+
# check if class has custom loader for name
|
53
|
+
def has_custom_loader?(name)
|
54
|
+
_custom_loaders.key?(name)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
## Instance Methods
|
59
|
+
|
60
|
+
# clear custom preloaded values
|
61
|
+
def clear_custom_preloaded_values
|
62
|
+
@_custom_preloaded_values = nil
|
63
|
+
end
|
64
|
+
|
65
|
+
# clear particular custom preloaded value
|
66
|
+
def clear_custom_preloaded_value(name)
|
67
|
+
raise Error, "custom preloader #{name.inspect} does not exist" unless _custom_loaders.key?(name)
|
68
|
+
_custom_preloaded_values.delete(name)
|
69
|
+
end
|
70
|
+
|
71
|
+
def has_custom_preloaded_value?(name)
|
72
|
+
_custom_preloaded_values.key?(name)
|
73
|
+
end
|
74
|
+
|
75
|
+
# sets custom preloaded value for name
|
76
|
+
def _set_custom_preloaded_value(name, value)
|
77
|
+
_custom_preloaded_values[name] = value
|
78
|
+
end
|
79
|
+
|
80
|
+
# returns Hash that stores cached custom preloaded values
|
81
|
+
def _custom_preloaded_values
|
82
|
+
@_custom_preloaded_values ||= {}
|
83
|
+
end
|
84
|
+
|
85
|
+
# fetch if necessary and return custom preloaded value for name
|
86
|
+
def _custom_preloaded_value(name)
|
87
|
+
raise ArgumentError, "custom preloader #{name.inspect} does not exist" unless _custom_loaders.key?(name)
|
88
|
+
_load_custom_preloaded_value(name) unless has_custom_preloaded_value?(name)
|
89
|
+
_custom_preloaded_values[name]
|
90
|
+
end
|
91
|
+
|
92
|
+
def _load_custom_preloaded_value(name, options = {})
|
93
|
+
self.class.custom_loader_for(name, options).preload([self])
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module ActiveRecordCustomPreloader
|
2
|
+
class PreloadWithOptions
|
3
|
+
attr_reader :name, :options
|
4
|
+
def initialize(name, options = {})
|
5
|
+
@name = name
|
6
|
+
@options = options
|
7
|
+
end
|
8
|
+
|
9
|
+
def loader_for(klass)
|
10
|
+
klass.custom_loader_for(name, options)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecordCustomPreloader
|
4
|
+
class Preloader
|
5
|
+
attr_reader :klass, :name, :args
|
6
|
+
|
7
|
+
def initialize(klass, name, args)
|
8
|
+
@klass = klass
|
9
|
+
@name = name
|
10
|
+
@args = args
|
11
|
+
end
|
12
|
+
|
13
|
+
# override this method in a subclass to provide customized preloading behavior
|
14
|
+
def preload(records)
|
15
|
+
values = args.fetch(:values).call(records)
|
16
|
+
records.each do |record|
|
17
|
+
value = values[record.id]
|
18
|
+
record._set_custom_preloaded_value(name, value)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'active_support/concern'
|
3
|
+
|
4
|
+
module ActiveRecordCustomPreloader
|
5
|
+
module RelationPatch
|
6
|
+
extend ActiveSupport::Concern
|
7
|
+
|
8
|
+
included do
|
9
|
+
private
|
10
|
+
|
11
|
+
def build_preloader
|
12
|
+
ActiveRecordCustomPreloader::AssociationsPreloader.new
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'active_record_custom_preloader/version'
|
2
|
+
require 'active_record_custom_preloader/preloader'
|
3
|
+
require 'active_record_custom_preloader/preload_with_options'
|
4
|
+
require 'active_record_custom_preloader/associations_preloader'
|
5
|
+
require 'active_record_custom_preloader/model_patch'
|
6
|
+
require 'active_record_custom_preloader/relation_patch'
|
7
|
+
|
8
|
+
module ActiveRecordCustomPreloader
|
9
|
+
class Error < StandardError
|
10
|
+
end
|
11
|
+
# Your code goes here...
|
12
|
+
end
|
metadata
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: active_record_custom_preloader
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Denis Talakevich
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-01-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activerecord
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '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: '2.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: minitest
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '5.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '5.0'
|
83
|
+
description: Custom preloader for ActiveRecord.
|
84
|
+
email:
|
85
|
+
- senid231@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".travis.yml"
|
92
|
+
- CODE_OF_CONDUCT.md
|
93
|
+
- Gemfile
|
94
|
+
- LICENSE.txt
|
95
|
+
- README.md
|
96
|
+
- Rakefile
|
97
|
+
- active_record_custom_preloader.gemspec
|
98
|
+
- bin/console
|
99
|
+
- bin/setup
|
100
|
+
- lib/active_record_custom_preloader.rb
|
101
|
+
- lib/active_record_custom_preloader/associations_preloader.rb
|
102
|
+
- lib/active_record_custom_preloader/model_patch.rb
|
103
|
+
- lib/active_record_custom_preloader/preload_with_options.rb
|
104
|
+
- lib/active_record_custom_preloader/preloader.rb
|
105
|
+
- lib/active_record_custom_preloader/railtie.rb
|
106
|
+
- lib/active_record_custom_preloader/relation_patch.rb
|
107
|
+
- lib/active_record_custom_preloader/version.rb
|
108
|
+
homepage: https://github.com/senid231/active_record_custom_preloader
|
109
|
+
licenses:
|
110
|
+
- MIT
|
111
|
+
metadata: {}
|
112
|
+
post_install_message:
|
113
|
+
rdoc_options: []
|
114
|
+
require_paths:
|
115
|
+
- lib
|
116
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
121
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
requirements: []
|
127
|
+
rubyforge_project:
|
128
|
+
rubygems_version: 2.6.6
|
129
|
+
signing_key:
|
130
|
+
specification_version: 4
|
131
|
+
summary: Custom preloader for ActiveRecord.
|
132
|
+
test_files: []
|