zuora_connect 1.4.19 → 1.4.20
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 661d25f65735ceffbbab6973b68cdb9ccd4afd26
|
4
|
+
data.tar.gz: 8fbc56c3e290cc3b7a08e0194435740efafca603
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98c735df090afcdaf267b4fcff8c7e80218a2657080ef93f5bdd8b930bc79a00f2419c0009e797e05e36b2b3c66c29125afe51756d0de896d1bd16b286cfcb9a
|
7
|
+
data.tar.gz: d33ad3b543e134c478293659edd1aab36f8ae3599ae17c15780bb8bcc2e4c9171a9a4ced26fdfa91a319cbe872c5968a88bf4e3c60e91a21511080e0f3a998f9
|
@@ -1,6 +1,5 @@
|
|
1
1
|
module ZuoraConnect
|
2
2
|
class AppInstance < ZuoraConnect::AppInstanceBase
|
3
|
-
default_scope {select(ZuoraConnect::AppInstance.column_names.delete_if {|x| ["
|
4
|
-
|
3
|
+
default_scope {select(ZuoraConnect::AppInstance.column_names.delete_if {|x| ["catalog_mapping", "catalog"].include?(x) }) }
|
5
4
|
end
|
6
5
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module ZuoraConnect
|
2
2
|
class AppInstanceBase < ActiveRecord::Base
|
3
|
-
default_scope {select(ZuoraConnect::AppInstance.column_names.delete_if {|x| ["
|
3
|
+
default_scope {select(ZuoraConnect::AppInstance.column_names.delete_if {|x| ["catalog_mapping", "catalog"].include?(x) }) }
|
4
4
|
after_initialize :init
|
5
5
|
self.table_name = "zuora_connect_app_instances"
|
6
6
|
attr_accessor :options, :mode, :logins, :valid, :task_data, :last_refresh, :username, :password, :s3_client, :api_version
|
@@ -292,6 +292,7 @@ module ZuoraConnect
|
|
292
292
|
I18n.locale = self.locale
|
293
293
|
Time.zone = self.timezone
|
294
294
|
@valid = true
|
295
|
+
return self
|
295
296
|
end
|
296
297
|
|
297
298
|
def save_data(session = Hash.new)
|
@@ -1,3 +1,3 @@
|
|
1
1
|
module ZuoraConnect
|
2
|
-
VERSION = "1.4.
|
3
|
-
end
|
2
|
+
VERSION = "1.4.20"
|
3
|
+
end
|