activeset 0.6.4 → 0.6.5

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: a825246f73039a0fc8fa629354cc0d803eee7398
4
- data.tar.gz: d8fdbef2dcc49e136d4f5b4aec3f1b708cc6b026
3
+ metadata.gz: 58ac4ca493d503b7c0801bcad0c24bf2ab050732
4
+ data.tar.gz: c5e1c3d571a14ed3abed1b2e26db9b4009457302
5
5
  SHA512:
6
- metadata.gz: 696bb548f4bfe7d44b425fbbf39ed6e522ee4806629f96b2ad5f0bcbe7d34b5c96af41cd15a56d6bff6dda3d9690eb424886ed4b6a5f66a3efa7849e1e600187
7
- data.tar.gz: 98dafa877023ef43d2d939ad3e23102a29ac85dc340ca39ca0076e355d767422bcae8c9bd01f39964f899383ab9927b19aa552835592a89d49054b4926e91d6a
6
+ metadata.gz: 42284a6d184c695acf3ff502e0d32de0f3a4c00707e375ba56d3e2c91fc099884ce1313783b16b1d5db9b488ef8199f60a2b789a6566f19b8784d3708658da47
7
+ data.tar.gz: 8c693840d6b28e1ebd6e3a245e41c68cc6dbb8c60817355e2e913492502177377739345d119e9786c1275f247f108cff08125ad23577d83c7f1b048700b45678
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v 0.6.5
2
+ - Fix the ActiveRecord filtering adapter to use the correct operator (=) for Oracle WHERE clauses
1
3
  v 0.6.4
2
4
  - Add multi-column sorting for ActiveRecord collections
3
5
  - Fix the ActiveRecord `attribute_model` method to always return the class, and not an ActiveRecord::Relation object
@@ -43,7 +43,7 @@ class ActiveSet
43
43
  end
44
44
 
45
45
  def arel_operator
46
- instruction.operator
46
+ instruction.operator(default: '=')
47
47
  end
48
48
  end
49
49
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ActiveSet
4
- VERSION = '0.6.4'
4
+ VERSION = '0.6.5'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeset
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.4
4
+ version: 0.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Margheim
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-04 00:00:00.000000000 Z
11
+ date: 2018-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport