Ayuda con Error

Que tal, estoy aprendiendo a programar en Ruby y al tratar de probar la primera página, me sale este error, alguien que me ayude de favor??

Necesita crear app/views/home/index.html[.erb] :blush:

Lo voy a hacer, muchas gracias!!!

Saludos!!!

Ya esta creado y sigue marcando el error, alguna otra sugerencia??

Gracias!! Saludos!!!

Tal vez si nos das acceso de alguna manera a tu código (Un .zip, un enlace a algún repo git) pudiéramos ayudarte mejor.

1 Like

Qué hay en app/controllers/home_controller.rb y config/routes.rb?

Rails.application.routes.draw do

For details on the DSL available within this file, see Rails Routing from the Outside In — Ruby on Rails Guides

get “/bienvenida”, to: “home#index”

end

config/routes.rb

Rails.application.routes.draw do
  # For details on the DSL available within this file, see Rails Routing from the Outside In — Ruby on Rails Guides
  get "/bienvenida", to: "home#index"
end

app/controllers/home_controller.rb

HomeController < ApplicationController
  def index
  end
end

app/views/home/index.html.erb

<h1>Bienvenida</h1>