eager_group 0.3.0 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0628b41e3191da5216f80c436de1da7c4a9dc3be
4
- data.tar.gz: 36de11cb727b029633f41cac0950f1fa31a33adc
3
+ metadata.gz: 28f670fdfe6005404593f062ca54f9e415512779
4
+ data.tar.gz: 2d744e1dfe87edcf0e9e800a33970c443de1a392
5
5
  SHA512:
6
- metadata.gz: efbadb72bff4d8b62e75db9bafaed9d6f4f3197447f35e6bd722ce26977318bf38bf003db102bf973f2c42037c21a57ef06c00a33ebfa4f79f25efe853de516c
7
- data.tar.gz: 7bec44884ab2c31e914400d9bd370f8de5c7c31c8764b95ec8f907090f4a7a3a589a162527faed42d13608bdb409b5a80d87562d6d2b56e3091dfe3c12e3d674
6
+ metadata.gz: 7954ec79f25757d438d993395e3a0d17b2409ccd9cc7792886653d1bee8fb22c728924b9ca134aa9509aea7e92e378daf82d85035274efa5ee8e7a4bd7dbc977
7
+ data.tar.gz: 62412a67a9401bd50ec7ee67c712aaf75010afaffb56a70a64c7eb8e4882f4ff54a7af9fcfb869c6f8d9f6b7bdb229a41a7e5829dbcd16c24af05c7773d90e0a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Next Release
2
2
 
3
+ ## 0.4.0 (05/18/2016)
4
+
5
+ * Support scope arguments
6
+
3
7
  ## 0.3.0 (10/11/2015)
4
8
 
5
9
  * Support polymorphic association
@@ -11,11 +11,11 @@ module EagerGroup
11
11
  primary_key = @klass.primary_key
12
12
  record_ids = @records.map { |record| record.send primary_key }
13
13
  @eager_group_values.each do |eager_group_value|
14
- definition = @klass.eager_group_definations[eager_group_value]
15
- if definition
14
+ defination_key, arguments = eager_group_value.is_a?(Array) ? [eager_group_value.shift, eager_group_value] : [eager_group_value, nil]
15
+ if definition = @klass.eager_group_definations[defination_key]
16
16
  reflection = @klass.reflect_on_association(definition.association)
17
17
  association_class = reflection.class_name.constantize
18
- association_class = association_class.instance_exec(&definition.scope) if definition.scope
18
+ association_class = association_class.instance_exec(*arguments, &definition.scope) if definition.scope
19
19
  polymophic_as_condition = lambda {|reflection|
20
20
  if reflection.type
21
21
  ["#{reflection.name}.#{reflection.type} = ?", @klass.base_class.name]
@@ -23,7 +23,7 @@ module EagerGroup
23
23
  []
24
24
  end
25
25
  }
26
-
26
+
27
27
  if reflection.through_reflection
28
28
  foreign_key = "#{reflection.through_reflection.name}.#{reflection.through_reflection.foreign_key}"
29
29
  aggregate_hash = association_class.joins(reflection.through_reflection.name)
@@ -39,7 +39,7 @@ module EagerGroup
39
39
  end
40
40
  @records.each do |record|
41
41
  id = record.send primary_key
42
- record.send "#{eager_group_value}=", aggregate_hash[id] || 0
42
+ record.send "#{defination_key}=", aggregate_hash[id] || 0
43
43
  end
44
44
  end
45
45
  end
@@ -1,3 +1,3 @@
1
1
  module EagerGroup
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eager_group
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Huang
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-10-11 00:00:00.000000000 Z
11
+ date: 2016-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  version: '0'
153
153
  requirements: []
154
154
  rubyforge_project:
155
- rubygems_version: 2.4.5.1
155
+ rubygems_version: 2.5.1
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: Fix n+1 aggregate sql functions