finapps 0.2.6.pre → 0.2.7.pre
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 +4 -4
- data/lib/finapps/rest/user_institutions.rb +0 -19
- data/lib/finapps/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ccdbdbc04d2b91e794e21134cd77e691b2943a38
|
|
4
|
+
data.tar.gz: e7f41e6be69b9bc5c0ca6231adb601f9a6343e71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5a30483c83015268895cb425d34c89788328befa6a239eaf58d3cfb0c0f15bd667e08d129d1069fe9c8a992a4ad654441c424ec21818e828c47cd2e3ddd03c4
|
|
7
|
+
data.tar.gz: 983d6faeab0273ffe8a0380f554a97cf5df994d6722732f8e7239f6fe4080dc303dc2df277e1d5ce00b75f7f9370594d42a865704e214782066ac1ac26c3fda2
|
|
@@ -98,25 +98,6 @@ module FinApps
|
|
|
98
98
|
|
|
99
99
|
class UserInstitution < FinApps::REST::Resource
|
|
100
100
|
attr_accessor :_id, :account_id, :institution_name, :status, :status_message, :last_refreshed, :accounts
|
|
101
|
-
|
|
102
|
-
def initialize(hash)
|
|
103
|
-
super
|
|
104
|
-
@accounts ||= []
|
|
105
|
-
|
|
106
|
-
logger.debug "##{__method__.to_s} => Parsing accounts array"
|
|
107
|
-
if hash[:accounts].present? && hash[:accounts].respond_to?(:each)
|
|
108
|
-
logger.debug hash[:accounts]
|
|
109
|
-
|
|
110
|
-
=begin
|
|
111
|
-
hash[:accounts].each do |a|
|
|
112
|
-
logger.debug a.pretty_print
|
|
113
|
-
@accounts << FinApps::REST::Account.new(a)
|
|
114
|
-
end
|
|
115
|
-
=end
|
|
116
|
-
else
|
|
117
|
-
logger.debug "##{__method__.to_s} => Accounts array is null"
|
|
118
|
-
end
|
|
119
|
-
end
|
|
120
101
|
end
|
|
121
102
|
|
|
122
103
|
end
|
data/lib/finapps/version.rb
CHANGED