ystock 0.3.2 → 0.3.3
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.
- data/lib/ystock/google.rb +0 -2
- data/ystock.gemspec +1 -1
- metadata +1 -1
data/lib/ystock/google.rb
CHANGED
|
@@ -14,7 +14,6 @@ module Ystock
|
|
|
14
14
|
stock_string += "&stock=" + stock
|
|
15
15
|
end
|
|
16
16
|
end
|
|
17
|
-
puts stock_string
|
|
18
17
|
# => Send Request to get quote then format
|
|
19
18
|
format(send_request(stock_string))
|
|
20
19
|
end
|
|
@@ -46,7 +45,6 @@ module Ystock
|
|
|
46
45
|
|
|
47
46
|
def self.send_request(args)
|
|
48
47
|
url = @@google_service + args
|
|
49
|
-
puts url
|
|
50
48
|
return HTTParty.get(url)
|
|
51
49
|
end
|
|
52
50
|
end
|
data/ystock.gemspec
CHANGED