lita-onewheel-finance 0.6.0 → 0.7.0
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/lita/handlers/alphavantage_quote.rb +68 -0
- data/lib/lita/handlers/irc_colors.rb +43 -0
- data/lib/lita/handlers/onewheel_finance.rb +47 -227
- data/lib/lita/handlers/worldtradedata_quote.rb +128 -0
- data/lib/lita/handlers/yahoo_quote.rb +58 -0
- data/lita-onewheel-finance.gemspec +1 -1
- data/spec/fixtures/yahoo-quote.json +1664 -0
- metadata +9 -4
- data/.ruby-version +0 -1
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lita-onewheel-finance
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kreps
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lita
|
@@ -130,13 +130,16 @@ extensions: []
|
|
130
130
|
extra_rdoc_files: []
|
131
131
|
files:
|
132
132
|
- ".gitignore"
|
133
|
-
- ".ruby-version"
|
134
133
|
- ".travis.yml"
|
135
134
|
- Gemfile
|
136
135
|
- README.md
|
137
136
|
- Rakefile
|
138
137
|
- lib/lita-onewheel-finance.rb
|
138
|
+
- lib/lita/handlers/alphavantage_quote.rb
|
139
|
+
- lib/lita/handlers/irc_colors.rb
|
139
140
|
- lib/lita/handlers/onewheel_finance.rb
|
141
|
+
- lib/lita/handlers/worldtradedata_quote.rb
|
142
|
+
- lib/lita/handlers/yahoo_quote.rb
|
140
143
|
- lita-onewheel-finance.gemspec
|
141
144
|
- spec/fixtures/alphavantage-global-quote.json
|
142
145
|
- spec/fixtures/alphavantage-quote-down.json
|
@@ -146,6 +149,7 @@ files:
|
|
146
149
|
- spec/fixtures/worldtradedata-quote-down.json
|
147
150
|
- spec/fixtures/worldtradedata-quote-up.json
|
148
151
|
- spec/fixtures/worldtradedata-search-1.json
|
152
|
+
- spec/fixtures/yahoo-quote.json
|
149
153
|
- spec/lita/handlers/onewheel_finance_spec.rb
|
150
154
|
- spec/spec_helper.rb
|
151
155
|
homepage: https://github.com/onewheelskyward/lita-onewheel-finance
|
@@ -168,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
168
172
|
- !ruby/object:Gem::Version
|
169
173
|
version: '0'
|
170
174
|
requirements: []
|
171
|
-
rubygems_version: 3.
|
175
|
+
rubygems_version: 3.1.2
|
172
176
|
signing_key:
|
173
177
|
specification_version: 4
|
174
178
|
summary: Designed to query stock indicies and return relevant data.
|
@@ -181,5 +185,6 @@ test_files:
|
|
181
185
|
- spec/fixtures/worldtradedata-quote-down.json
|
182
186
|
- spec/fixtures/worldtradedata-quote-up.json
|
183
187
|
- spec/fixtures/worldtradedata-search-1.json
|
188
|
+
- spec/fixtures/yahoo-quote.json
|
184
189
|
- spec/lita/handlers/onewheel_finance_spec.rb
|
185
190
|
- spec/spec_helper.rb
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
2.6.5
|