xeroizer-float 2.15.3.11 → 2.15.3.12
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/xeroizer/record/base_model_http_proxy.rb +1 -3
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.15.3.
|
1
|
+
2.15.3.12
|
@@ -18,11 +18,9 @@ module Xeroizer
|
|
18
18
|
params = {}
|
19
19
|
params[:ModifiedAfter] = options[:modified_since] if options[:modified_since]
|
20
20
|
|
21
|
-
params[:order]
|
21
|
+
params[:order] = options[:order] if options[:order]
|
22
22
|
params[:reverseorder] = options[:reverseorder] if options[:reverseorder]
|
23
23
|
|
24
|
-
params[:order] = options[:order] if options[:order]
|
25
|
-
params[:reverseorder] = options[:order] if options[:reverseorder]
|
26
24
|
if options[:where]
|
27
25
|
params[:where] = case options[:where]
|
28
26
|
when String then options[:where]
|