我一步一步地遵循tutorial。我的ruby版本是1.9.3,rails版本是3.2.16。
但仍然无法奏效。给我一个错误:NameError
undefined local variable or method `netzke' for #<ActionDispatch::Routing::Mapper:0x007ffcb24eb590>
Rails.root: /Users/USER/MyGit/a
似乎是root错误,所以我更改了根文件
之前:
netzke
root to: "welcome#index"
后:
root to: "welcome#index"
但是当再次运行时,它又引发了另一个错误:
NoMethodError in Welcome#index
Showing /Users/tangmonk/MyGit/a/app/views/welcome/index.html.erb where line #1 raised:
undefined method `netzke' for #<#<Class:0x007ffcb29cad40>:0x007ffcb29c8248>
Extracted source (around line #1):
1: <%= netzke :tasks, height: 400 %>
Rails.root: /Users/tangmonk/MyGit/a
我将rails版本更改为4.0,但问题仍然存在。
所以,我希望有人可以帮助我。
答案 0 :(得分:0)
看起来一切都是正确的但是在向Gemfile添加新宝石后忘记运行bundle install
。