polygonio 0.2.1 → 0.2.2
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/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/polygonio/rest/api/stocks.rb +2 -2
- data/lib/polygonio/version.rb +1 -1
- data/polygonio.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b2f97cba4b8dce047b360b501ffa104b30b9a3da30739a1bf1120f8bf3f6585
|
|
4
|
+
data.tar.gz: 568b4be6bfee84037928cb94680d2b941026911055eb61b08634fe436422d4bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf74c0026b4ce7782966273a34074fc7cbfca7ced1b79a3fcd52538ad9ad3cbd5646a8f0a22f12acff69275bb1c52f3334d40e2be96b23fa30cc9434fa850b4f
|
|
7
|
+
data.tar.gz: cef06cff038f3ddc91b513cc5d7489f69eb7d9231c883f26f107467e85f27076887f18094d3d14f5ffc42bb5a296c9ebe90812046a6abfb8c598498b01301e3b
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -78,7 +78,7 @@ module Polygonio
|
|
|
78
78
|
end
|
|
79
79
|
end
|
|
80
80
|
|
|
81
|
-
def historic_quotes(ticker, date, params)
|
|
81
|
+
def historic_quotes(ticker, date, params = {})
|
|
82
82
|
ticker = Types::String[ticker]
|
|
83
83
|
date = Types::JSON::Date[date]
|
|
84
84
|
params = HistoricParams[params]
|
|
@@ -272,7 +272,7 @@ module Polygonio
|
|
|
272
272
|
attribute :results, Types::Array do
|
|
273
273
|
attribute? :T, Types::String # Not appearing
|
|
274
274
|
attribute :v, Types::JSON::Decimal
|
|
275
|
-
attribute :vw, Types::JSON::Decimal
|
|
275
|
+
attribute? :vw, Types::JSON::Decimal
|
|
276
276
|
attribute :o, Types::JSON::Decimal
|
|
277
277
|
attribute :c, Types::JSON::Decimal
|
|
278
278
|
attribute :h, Types::JSON::Decimal
|
data/lib/polygonio/version.rb
CHANGED
data/polygonio.gemspec
CHANGED
|
@@ -16,9 +16,9 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.description = "Client library for polygon.io's REST and Websocker API's"
|
|
17
17
|
|
|
18
18
|
spec.metadata = {
|
|
19
|
-
"homepage_uri" => "https://github.com/lancecarlson/
|
|
20
|
-
"source_code_uri" => "https://github.com/lancecarlson/
|
|
21
|
-
"bug_tracker_uri" => "https://github.com/lancecarlson/
|
|
19
|
+
"homepage_uri" => "https://github.com/lancecarlson/polygonio-rb",
|
|
20
|
+
"source_code_uri" => "https://github.com/lancecarlson/polygonio-rb",
|
|
21
|
+
"bug_tracker_uri" => "https://github.com/lancecarlson/polygonio-rb/issues"
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
# Specify which files should be added to the gem when it is released.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: polygonio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lance Carlson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-05-
|
|
11
|
+
date: 2020-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -373,9 +373,9 @@ homepage:
|
|
|
373
373
|
licenses:
|
|
374
374
|
- MIT
|
|
375
375
|
metadata:
|
|
376
|
-
homepage_uri: https://github.com/lancecarlson/
|
|
377
|
-
source_code_uri: https://github.com/lancecarlson/
|
|
378
|
-
bug_tracker_uri: https://github.com/lancecarlson/
|
|
376
|
+
homepage_uri: https://github.com/lancecarlson/polygonio-rb
|
|
377
|
+
source_code_uri: https://github.com/lancecarlson/polygonio-rb
|
|
378
|
+
bug_tracker_uri: https://github.com/lancecarlson/polygonio-rb/issues
|
|
379
379
|
post_install_message:
|
|
380
380
|
rdoc_options: []
|
|
381
381
|
require_paths:
|