nas-yahoo_stock 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +7 -1
- data/README.rdoc +11 -10
- data/lib/yahoo_stock.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
@@ -58,4 +58,10 @@ Major changes in the public API. Check the README.rdoc file and individual class
|
|
58
58
|
* changes YahooStock::Quote, YahooStock::History, YahooStock::ScripSymbol to extend from YahooStock::Base
|
59
59
|
* sorts url parameters before sending request to yahoo
|
60
60
|
* YahooInterface::Quote#realtime, extended, and standard methods should return self to allow calling different format output method calls
|
61
|
-
* do not discard any empty values when finding scrip symbol options for a company as this interferes with different format options
|
61
|
+
* do not discard any empty values when finding scrip symbol options for a company as this interferes with different format options
|
62
|
+
|
63
|
+
=== 1.0.3 2009-10-04
|
64
|
+
|
65
|
+
* 2 changes:
|
66
|
+
* changes README file to add reference for gemcutter
|
67
|
+
* changes gemspec to use nas-yahoo_stock
|
data/README.rdoc
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
= yahoo_stock
|
2
2
|
|
3
|
-
* http://github.com/nas/yahoo_stock
|
3
|
+
* http://github.com/nas/yahoo_stock
|
4
4
|
|
5
5
|
== DESCRIPTION:
|
6
6
|
|
@@ -10,6 +10,16 @@ If you don't know the stock / scrip symbol of the company then you can find that
|
|
10
10
|
The kind of parameters to be passed can be found after initializing the
|
11
11
|
YahooStock::Quote object and passing valid_parameters message, example is given below in the USAGE section.
|
12
12
|
|
13
|
+
|
14
|
+
== INSTALL:
|
15
|
+
|
16
|
+
gem sources -a http://gems.github.com
|
17
|
+
|
18
|
+
gem sources -a http://gemcutter.org
|
19
|
+
|
20
|
+
sudo gem install nas-yahoo_stock
|
21
|
+
|
22
|
+
|
13
23
|
== USAGE:
|
14
24
|
|
15
25
|
require 'rubygems'
|
@@ -104,15 +114,6 @@ symbols.store('filename')
|
|
104
114
|
|
105
115
|
history.results.store('filename')
|
106
116
|
|
107
|
-
== INSTALL:
|
108
|
-
|
109
|
-
gem sources -a http://gems.github.com
|
110
|
-
|
111
|
-
OR
|
112
|
-
|
113
|
-
gem sources -a http://gemcutter.org
|
114
|
-
|
115
|
-
sudo gem install nas-yahoo_stock
|
116
117
|
|
117
118
|
== TESTS:
|
118
119
|
|
data/lib/yahoo_stock.rb
CHANGED