finapps 0.5.3.pre → 0.5.4.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/client.rb +2 -2
- 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: 268edfe6db6e9e4f637a439d3ee0f22262594579
|
|
4
|
+
data.tar.gz: 50973a2ac1ba397cec37264b061d6c501dd3ec34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 336c05acf22912731014172bad4f17b5120d6d8866e33515b8a195b39918362e3bf4c7ccc5b7ba39c2487804debbcbdb1a2ffd3a672c0ebf0042e98d60c06804
|
|
7
|
+
data.tar.gz: 9b6b5cb08b3dbf53ad45da1eebe08f56ac83a0993bc4c617eada3f66913f82ec469e78a188b0c4b9f548b723265b8bb087f8c811f396394758f246b6aabc0740
|
data/lib/finapps/rest/client.rb
CHANGED
|
@@ -5,7 +5,7 @@ module FinApps
|
|
|
5
5
|
include FinApps::Logging
|
|
6
6
|
include FinApps::REST::Connection
|
|
7
7
|
|
|
8
|
-
attr_reader :connection, :users, :institutions, :user_institutions, :accounts, :transactions, :categories
|
|
8
|
+
attr_reader :connection, :users, :institutions, :user_institutions, :accounts, :transactions, :categories, :rule_sets
|
|
9
9
|
|
|
10
10
|
# @param [String] company_identifier
|
|
11
11
|
# @param [String] company_token
|
|
@@ -168,13 +168,13 @@ module FinApps
|
|
|
168
168
|
response
|
|
169
169
|
end
|
|
170
170
|
|
|
171
|
-
|
|
172
171
|
def set_up_resources
|
|
173
172
|
@users ||= FinApps::REST::Users.new self
|
|
174
173
|
@institutions ||= FinApps::REST::Institutions.new self
|
|
175
174
|
@user_institutions ||= FinApps::REST::UserInstitutions.new self
|
|
176
175
|
@transactions ||= FinApps::REST::Transactions.new self
|
|
177
176
|
@categories ||= FinApps::REST::Categories.new self
|
|
177
|
+
@rule_sets ||= FinApps::REST::Relevance::Rulesets.new self
|
|
178
178
|
end
|
|
179
179
|
|
|
180
180
|
end
|
data/lib/finapps/version.rb
CHANGED