finapps 0.2.4.pre → 0.2.5.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 +5 -0
- 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: 43b25a4c6fafad7293f3d4ad022cbe28b04b2bfc
|
|
4
|
+
data.tar.gz: 2b0f76bcfed802b4b05d96c4cdb3a4975df1bdb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edfff8cee7b43755477ba84f40634b9e71683540efecc883d788f1efe0d46ea3715887306800d5f2a6b41234710b42896e33ad5f15b61e01af4c62dd0b386677
|
|
7
|
+
data.tar.gz: ffe6a4679e0d85b04ed4edca48ed37f2a4ee7f3d233d5924dfe86a274704fbd1f7e83ebd22150a46628c563d1d4fdbee6be8fafd4de477793776457b4557ea3f
|
|
@@ -106,10 +106,15 @@ module FinApps
|
|
|
106
106
|
logger.debug "##{__method__.to_s} => Parsing accounts array"
|
|
107
107
|
if hash[:accounts].present? && hash[:accounts].respond_to?(:each)
|
|
108
108
|
logger.debug hash[:accounts].pretty_print
|
|
109
|
+
|
|
110
|
+
=begin
|
|
109
111
|
hash[:accounts].each do |a|
|
|
110
112
|
logger.debug a.pretty_print
|
|
111
113
|
@accounts << FinApps::REST::Account.new(a)
|
|
112
114
|
end
|
|
115
|
+
=end
|
|
116
|
+
else
|
|
117
|
+
logger.debug "##{__method__.to_s} => Accounts array is null"
|
|
113
118
|
end
|
|
114
119
|
end
|
|
115
120
|
end
|
data/lib/finapps/version.rb
CHANGED