active_record_association_query_economizer 0.1.4 → 0.1.5
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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 355ea812e8ba8feb4ca63050bd626b78c6936e10
|
|
4
|
+
data.tar.gz: 8458eacf613335460b0208f759624a4fc28f1a90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9484c25735a390151bd1825429a17379ecb6e38cc4d9b5a4978c86c15ec9d952988620fe141a8dc82661aa6a2817d622d10967d3ac23c77c96d9fd190fc4f753
|
|
7
|
+
data.tar.gz: 596a09e6e146ed8110e12555bf1cb000314a5dccc425774f802e14c5c795583750a6dd84082e1772abfc7ca9bf4f81885b5e5d600fcc3ac2e330c37bfad5a958
|
data/README.md
CHANGED
|
@@ -50,6 +50,10 @@ end
|
|
|
50
50
|
|
|
51
51
|
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/active_record_association_query_economizer. 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.
|
|
52
52
|
|
|
53
|
+
### Testing
|
|
54
|
+
```
|
|
55
|
+
$ rake test:all
|
|
56
|
+
```
|
|
53
57
|
|
|
54
58
|
## License
|
|
55
59
|
|
|
@@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
|
|
|
24
24
|
spec.add_development_dependency 'minitest'
|
|
25
25
|
spec.add_development_dependency 'sqlite3', '~> 1.3'
|
|
26
26
|
|
|
27
|
-
spec.add_runtime_dependency 'activerecord', '>= 4.2', '<= 5.1.
|
|
27
|
+
spec.add_runtime_dependency 'activerecord', '>= 4.2', '<= 5.1.5'
|
|
28
28
|
end
|
|
@@ -5,7 +5,7 @@ activerecord_version = ActiveRecord.version
|
|
|
5
5
|
case activerecord_version
|
|
6
6
|
when Gem::Requirement.create(['>= 4.2', '< 5'])
|
|
7
7
|
require 'active_record_association_query_economizer/rails4-2/associations'
|
|
8
|
-
when Gem::Requirement.create(['>= 5.0', '<= 5.1.
|
|
8
|
+
when Gem::Requirement.create(['>= 5.0', '<= 5.1.5'])
|
|
9
9
|
require 'active_record_association_query_economizer/rails5/associations'
|
|
10
10
|
else
|
|
11
11
|
Kernel.warn "active_record_association_query_economizer doesn't yet do anything on ActiveRecord #{activerecord_version}"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_record_association_query_economizer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- toru.yagi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -75,7 +75,7 @@ dependencies:
|
|
|
75
75
|
version: '4.2'
|
|
76
76
|
- - "<="
|
|
77
77
|
- !ruby/object:Gem::Version
|
|
78
|
-
version: 5.1.
|
|
78
|
+
version: 5.1.5
|
|
79
79
|
type: :runtime
|
|
80
80
|
prerelease: false
|
|
81
81
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -85,7 +85,7 @@ dependencies:
|
|
|
85
85
|
version: '4.2'
|
|
86
86
|
- - "<="
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: 5.1.
|
|
88
|
+
version: 5.1.5
|
|
89
89
|
description:
|
|
90
90
|
email:
|
|
91
91
|
executables: []
|
|
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
129
129
|
version: '0'
|
|
130
130
|
requirements: []
|
|
131
131
|
rubyforge_project:
|
|
132
|
-
rubygems_version: 2.
|
|
132
|
+
rubygems_version: 2.5.2
|
|
133
133
|
signing_key:
|
|
134
134
|
specification_version: 4
|
|
135
135
|
summary: Optimize queries of ActiveRecord preload functions.
|