finapps 0.8.5.pre → 0.9.0.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 -1
- 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: 9660197eec4e01febb2452520977d6d967902129
|
4
|
+
data.tar.gz: 5debba469d88ecb20bfe34e6e5add200efe788d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33edbc31f5c4b51e68df3f08228c9ad0548b8102a2eeca5d07185b63ff3afaf44c02509c6cff0d09ed12df6e98c9b7971cd08aecabc0ee897c2c019a76c23ef8
|
7
|
+
data.tar.gz: de4d1d342350078b8d23c298e8544dc6e23839bed8a8a895d4619d7270d3de586c100491a923a0edfbfe1329c90c15fbcee9fce13d013148028709028e4a1902
|
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, :
|
8
|
+
attr_reader :connection, :users, :institutions, :user_institutions, :transactions, :categories, :rule_sets, :budget_models
|
9
9
|
|
10
10
|
# @param [String] company_identifier
|
11
11
|
# @param [String] company_token
|
@@ -196,6 +196,7 @@ module FinApps
|
|
196
196
|
@transactions ||= FinApps::REST::Transactions.new self
|
197
197
|
@categories ||= FinApps::REST::Categories.new self
|
198
198
|
@rule_sets ||= FinApps::REST::Relevance::Rulesets.new self
|
199
|
+
@budget_models ||= FinApps::REST::BudgetModels.new self
|
199
200
|
end
|
200
201
|
|
201
202
|
end
|
data/lib/finapps/version.rb
CHANGED