stock-gains 0.1.5 → 0.1.6
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/stock-gains/version.rb +1 -1
- data/portfolio.csv +2 -3
- data/stock-gains-0.1.4.gem +0 -0
- data/stock-gains-0.1.5.gem +0 -0
- data/stock-gains-gem.gemspec +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d0a0980d2625ce22e1b66d3716cc5e7c80770a26
|
|
4
|
+
data.tar.gz: 386b520776ff47d19776fa60fcce5c8a27c10a9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 734ae96cbf0204f22af550683d7a7866630936c0e80a113514fabb34f4a8831c5385cd359294fbf25fdf898a10da5984ff94a0518c1b115219f7e37ac5316071
|
|
7
|
+
data.tar.gz: 5917d0051ceb65ee06555ce1146765e3953bc9281d14f42eb36b9c10d0cda0aa93e29dd665c5837a85312be75a3e11c0e4d8dacb9952620af398b25674cb82a5
|
data/lib/stock-gains/version.rb
CHANGED
data/portfolio.csv
CHANGED
|
Binary file
|
|
Binary file
|
data/stock-gains-gem.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ require 'stock-gains/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.authors = ["Frank Nowinski"]
|
|
8
8
|
spec.email = ["nowinski.frank@gmail.com"]
|
|
9
|
-
spec.description = %q{This Ruby gem uses the Yahoo Finance API to provide three valuable stock market functions for the user. First, it imports the users portfolio from a CSV file, calculates each stocks earnings/losses of the day, adds them together and returns an accumulated balance of the users total earnings/losses for the day. Next, it gives the user the option to display generic stock information of any or all stocks in their portfolio. Lastly, it allows the user to lookup stock data of any stock(s) of their choosing (for more
|
|
9
|
+
spec.description = %q{This Ruby gem uses the Yahoo Finance API to provide three valuable stock market functions for the user. First, it imports the users portfolio from a CSV file, calculates each stocks earnings/losses of the day, adds them together and returns an accumulated balance of the users total earnings/losses for the day. Next, it gives the user the option to display generic stock information of any or all stocks in their portfolio. Lastly, it allows the user to lookup stock data of any stock(s) of their choosing (for more information see https://github.com/frankNowinski/stock-gains).}
|
|
10
10
|
spec.summary = %q{https://github.com/frankNowinski/stock-gains}
|
|
11
11
|
spec.homepage = "https://learn.co"
|
|
12
12
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stock-gains
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Frank Nowinski
|
|
@@ -114,7 +114,7 @@ description: This Ruby gem uses the Yahoo Finance API to provide three valuable
|
|
|
114
114
|
returns an accumulated balance of the users total earnings/losses for the day. Next,
|
|
115
115
|
it gives the user the option to display generic stock information of any or all
|
|
116
116
|
stocks in their portfolio. Lastly, it allows the user to lookup stock data of any
|
|
117
|
-
stock(s) of their choosing (for more
|
|
117
|
+
stock(s) of their choosing (for more information see https://github.com/frankNowinski/stock-gains).
|
|
118
118
|
email:
|
|
119
119
|
- nowinski.frank@gmail.com
|
|
120
120
|
executables:
|
|
@@ -147,6 +147,8 @@ files:
|
|
|
147
147
|
- spec/03_stock_spec.rb
|
|
148
148
|
- spec/04_stock_lookup_spec.rb
|
|
149
149
|
- spec/spec_helper.rb
|
|
150
|
+
- stock-gains-0.1.4.gem
|
|
151
|
+
- stock-gains-0.1.5.gem
|
|
150
152
|
- stock-gains-gem-0.1.2.gem
|
|
151
153
|
- stock-gains-gem.gemspec
|
|
152
154
|
homepage: https://learn.co
|