Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialWoldy Jean
3,232 Pointserror when going to localhost/todo_lists
here is the error im getting for it
Started GET "/todo_lists" for ::1 at 2016-01-26 23:03:52 -0500
Processing by TodoListsController#index as HTML
TodoList Load (1.0ms) SELECT "todo_lists".* FROM "todo_lists"
Rendered todo_lists/index.html.erb within layouts/application (6.0ms)
Completed 500 Internal Server Error in 10113ms (ActiveRecord: 1.0ms)
ActionView::Template::Error (TypeError: Object doesn't support this property or method):
2: <html>
3: <head>
4: <title>Odot</title>
5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6: <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7: <%= csrf_meta_tags %>
8: </head>
app/views/layouts/application.html.erb:5:in `app_views_layouts_application_html_erb__1897557456_70979700'
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.5.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.5.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (97.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.5.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/actionpack-4.2.5.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (197.0ms
)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/web-console-2.2.1/lib/web_console/templates/_markup.html.erb (1.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/web-console-2.2.1/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (1.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/web-console-2.2.1/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/web-console-2.2.1/lib/web_console/templates/style.css.erb within layouts/inlined_string (1.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/web-console-2.2.1/lib/web_console/templates/console.js.erb within layouts/javascript (153.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/web-console-2.2.1/lib/web_console/templates/main.js.erb within layouts/javascript (1.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/web-console-2.2.1/lib/web_console/templates/error_page.js.erb within layouts/javascript (1.0ms)
Rendered C:/Ruby21/lib/ruby/gems/2.1.0/gems/web-console-2.2.1/lib/web_console/templates/index.html.erb (336.0ms)
please really confused
4 Answers
Alan Matthews
10,161 PointsI found a similar problem on stack overflow. In your app/views/layouts/application.html.erb
around line 5 or 6, change application
to default
<%= stylesheet_link_tag 'default', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'default', 'data-turbolinks-track' => true %>
If that doesn't work, change your coffeescript gem in routes.rb
to this:
gem 'coffee-script-source', '1.8.0'
and then bundle
to install the gem.
Woldy Jean
3,232 PointsThanks a lot it was able to help
Ivan Herazo
4,263 PointsThanks a lot!! The "default" move did the trick!!
Gaurav Mehla
3,131 PointsYou are 'gem'. Thanks moving application to default worked.
Joel Buzzanco
Courses Plus Student 2,738 PointsJoel Buzzanco
Courses Plus Student 2,738 PointsThanks for answering this, I was having a similar problem and changing 'application' to 'default ' fixed the bug. Awesome!