I want to create Rails 3 app just to update myself, but I have strange issue.
I have created welcome#index action using
rails generate controller welcome#index
(I have haml-rails gem) and I observe that a new view index.html.haml has been created. This action is my root_path, so in localhost:3000 I get content of this view.
I had application.html.erb which I have changed manually to application.html.haml and I have added layout 'application' in ApplicationController, but I get
Template is missing
Missing template layouts/application with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee, :haml]}
now, any ideas why ?
Maybe some code snippets:
class ApplicationController < ActionController::Base
layout "application"
protect_from_forgery
end
the file is in place:
mkk:~/projects/rails/gifts/app/views/layouts$ ls
application.html.html
application.html.haml. Just removeapplication.html.erb– ck3g Nov 6 '12 at 19:59layout "application"and it's works for me pastie.org/5336647 – ck3g Nov 6 '12 at 20:05