quovo 1.0.3 → 1.0.4
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/CHANGELOG.md +4 -0
- data/lib/quovo/api/history.rb +3 -3
- data/lib/quovo/token.rb +1 -1
- data/lib/quovo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05b9a24b4183e4fe22c85e547e1aac50521aa6b9
|
4
|
+
data.tar.gz: 670c9a0628d8e4fe8b00ee7f2df6c8e541f5110c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c09b69804689789b76378da23df02c4af570e725fc3dfcfdd93e75d0bec28a6e90ce1421d49413695745a0c739ec616c0b46f973f81c2dca85ac7fdad54e1b8d
|
7
|
+
data.tar.gz: 865f6e351f80eadcd77d514d5b43677a134ad86ca1bf54170dde3ef646eb4e3f80c98a0d20dd60e8cb8b13cf1b58a7f91e8e2f5c6ff3da7ec72886889ac6798a
|
data/CHANGELOG.md
CHANGED
data/lib/quovo/api/history.rb
CHANGED
@@ -7,7 +7,7 @@ module Quovo
|
|
7
7
|
|
8
8
|
def for_user(id, params = {})
|
9
9
|
id.require!(as: :id)
|
10
|
-
params.permit!(:start_date, :end_date, :start_id, :end_id)
|
10
|
+
params.permit!(:start_date, :end_date, :start_id, :end_id, :count)
|
11
11
|
api(:get, "/users/#{id}/history", params)
|
12
12
|
.fetch('history')
|
13
13
|
.cast(Transaction)
|
@@ -16,7 +16,7 @@ module Quovo
|
|
16
16
|
|
17
17
|
def for_account(id, params = {})
|
18
18
|
id.require!(as: :id)
|
19
|
-
params.permit!(:start_date, :end_date, :start_id, :end_id)
|
19
|
+
params.permit!(:start_date, :end_date, :start_id, :end_id, :count)
|
20
20
|
api(:get, "/accounts/#{id}/history", params)
|
21
21
|
.fetch('history')
|
22
22
|
.cast(Transaction)
|
@@ -25,7 +25,7 @@ module Quovo
|
|
25
25
|
|
26
26
|
def for_portfolio(id, params = {})
|
27
27
|
id.require!(as: :id)
|
28
|
-
params.permit!(:start_date, :end_date, :start_id, :end_id)
|
28
|
+
params.permit!(:start_date, :end_date, :start_id, :end_id, :count)
|
29
29
|
api(:get, "/portfolios/#{id}/history", params)
|
30
30
|
.fetch('history')
|
31
31
|
.cast(Transaction)
|
data/lib/quovo/token.rb
CHANGED
data/lib/quovo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quovo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Gorkunov
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-07-
|
12
|
+
date: 2016-07-13 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Quovo RESTful API client, configurable, thread-safe and well-tested
|
15
15
|
email:
|