1

我正在通过http://ruby.railstutorial.org/工作。我正在部署我的网站,但遇到了错误。

您要查找的页面不存在。

您可能输入了错误的地址或页面可能已移动。

如果您是应用程序所有者,请查看日志以获取更多信息。

这是我当前的 Gemfile:

source 'https://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0'

# Use sqlite3 as the database for Active Record
group :development do
     gem 'sqlite3', '1.3.5'
end

当我跑步时

$ git push heroku master

我收到:

Everything up-to-date

我现在的

$ gem list

bigdecimal (1.2.0)
io-console (0.4.2)
json (1.7.7)
minitest (4.3.2)
psych (2.0.0)
rake (0.9.6)
rdoc (4.0.0)
rubygems-update (2.1.10)
sqlite3 (1.3.5)
test-unit (2.0.0.0)

我对 ruby​​ 和 rails 完全陌生,因此将不胜感激。

* 我已按照这些说明操作 *尚未成功

$ gem install heroku

更新 Gemfile

gem 'heroku'

$bundle install

没运气。

这是我的heroku日志:

...
2013-11-02T02:55:46.271237+00:00 heroku[router]: at=info method=GET path=/ host=aqueous-hamlet-2818.herokuapp.com fwd="136.152.142.31" dyno=web.1 connect=1ms service=247ms status=404 bytes=1351
4

1 回答 1

1

请试试:

gem install heroku

然后将heroku添加到您的Gemfilebundle install

有关宝石的更多信息,请访问http://rubygems.org/gems/heroku

于 2013-11-02T02:44:45.910 回答