rails_select_on_includes 5.1.4.1 → 5.1.4.2

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: a469600a55953ed0756cd3c743cb63fe74ee37f3
4
- data.tar.gz: bb03a46fd331813f085396cf5da81c9a0233e9e9
3
+ metadata.gz: 90f9c99a1481e490f598f5587282c15877dbca54
4
+ data.tar.gz: ee9f66985319c893b0f728bcb51beb990124430a
5
5
  SHA512:
6
- metadata.gz: e0e1d39a0dcab674aa7e148406f546f5c5b20b403b8be25f9f53e13d651a29a82594b8c329f15f0de18cbeeafb4110d9af3a4c0f9081e59f8b699b593c0402d5
7
- data.tar.gz: a812ebc0e9c299de69979ddff256ca89c7e189db8d77c2bcdc8672c65d341dcbc25ad6240923e4d7f507933c7dc4742b4de9cd35275dfa065d57b10c2b035ec8
6
+ metadata.gz: a2cda62f2208f8a167cd50f8a72f83e6ef27382ad5da73e66ee6804957a3fbef50118c975586a09235bebeb7a5ca4b2b91601bc7cdb2e591fc0e6c682fc87af7
7
+ data.tar.gz: 3bf458afffe68dd46870cb6f0ea201f6f29982cef1281b65cdbb5667de617200f5fdb8dbd6b8fb893d7bfa66d9990fed4b3681314609c834b45edf612c176031
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ # 5.1.5.2
2
+
3
+ * Arel::Nodes::TableAlias added
@@ -1,3 +1,3 @@
1
1
  module RailsSelectOnIncludes
2
- VERSION = "5.1.4.1"
2
+ VERSION = "5.1.4.2"
3
3
  end
@@ -41,6 +41,8 @@ require 'active_support/core_ext/string/filters'
41
41
  end
42
42
  when Arel::Nodes::As
43
43
  add_virtual_attribute(sv.right)
44
+ when Arel::Nodes::TableAlias
45
+ add_virtual_attribute(sv.right)
44
46
  when Arel::Nodes::Function
45
47
  add_virtual_attribute(sv.alias) if sv.alias.present?
46
48
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_select_on_includes
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.4.1
4
+ version: 5.1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - alekseyl
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-21 00:00:00.000000000 Z
11
+ date: 2018-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -109,6 +109,7 @@ extensions: []
109
109
  extra_rdoc_files: []
110
110
  files:
111
111
  - ".gitignore"
112
+ - CHANGELOG.md
112
113
  - Gemfile
113
114
  - LICENSE.txt
114
115
  - README.md