Stock_quote版本2.0.0

时间:2018-06-07 22:28:45

标签: ruby-on-rails ruby

我目前遇到gem stock_quote版本2.0.0的问题。我已经使用“bundle install”安装了gem,并包含了必要的代码片段,如下所示。但是,当我在chrome上使用“localhost:3000”从浏览器运行代码时,服务器突然终止并出现以下错误。

  

C:/tools/ruby25/lib/ruby/gems/2.5.0/gems/activerecord-5.2.0/lib/active_record/log_subscriber.rb:98   由HomeController#index处理为HTML渲染   home / index.html.erb布局/应用程序分段错误

浏览器出现此错误:“无法访问此站点.ERR_CONNECTION RESET。”

以下是我的代码。

gemFile中的段代码

ruby '2.5.1'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.0'
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
gem 'puma', '~> 3.11'
gem 'jquery-rails'
gem 'autoprefixer-rails'
gem 'bootstrap-sass', '~> 3.3.7'
gem 'bootstrap', '~> 4.0.0'
gem 'stock_quote', '~> 2.0.0'
home_controller.rb

class HomeController < ApplicationController
  def index
    @stock = StockQuote::Stock.quote("goog")
  end
  def about
  end
end

Index.html.erb

<h1>STOCKER</h1>
<p>This is from Stocker page!</p>

感谢您对上述方面的帮助。

感谢。

0 个答案:

没有答案