前提・実現したいこと
現場RailsのChapter3を進めています。
最初のhttp://localhost:3000/にアクセスした際、下記のエラーが出ます。
app/controllers/tasks_controller.rb:41: syntax error, unexpected keyword_end, expecting end-of-inputのエラーを解決したいです。
ご教示の程宜しくお願いします。
発生している問題・エラーメッセージ
app/controllers/tasks_controller.rb:41: syntax error, unexpected keyword_end, expecting end-of-input
該当のソースコード
app/controller/tasks.controller.rb
Rails
1class TasksController < ApplicationController 2 def index 3 @tasks = Task.all 4 end 5 6 def show 7 @task = Task.find(params[:id]) 8 end 9 10 def new 11 @task = Task.new 12 end 13 14 def edit 15 @task = Task.find(params[:id]) 16 end 17 18 def update 19 task = Task.find(params[:id]) 20 task.update!(task_params) 21 redirect_to tasks_url, notice: "タスク「#{task .name}」を更新しました。" 22 end 23 24 def destroy 25 task = Task.find(params[:id]) 26 task.destroy 27 redirect_to tasks_url, notice: "タスク「#{task.name}」を削除しました。" 28 end 29 30 def create 31 task = Task.new(task_params) 32 task.save! 33 redirect_to tasks_url, notice: "タスク「#{task.name}」を登録しました。" 34 end 35 36 private 37 38 def task_params 39 params.require(:task).permit(:name,:description) 40 end 41end
app/views/tasks/index.html.silm
h1 タスク一覧 = link_to '新規登録', new_task_path, class: 'btn btn-primary' .mb-3 table.table.table-hoever thead.thead-default tr th= Task.human_attribute_name(:name) th= Task.human_attribute_name(:created_at) th tbody - @tasks.each do |task| tr td= link_to task.name, task td= task.created_at td = link_to '編集', edit_task_path(task), class: 'btn btn-primary mr-3' = link_to '削除', task, method: :delete, date: { confirm: "タスク「#{task .name}」を削除します。よろしいですか?" }, class: 'btn btn-danger'
試したこと
インデントかと思われるが何度確認したがあっていました。 ここに問題に対して試したことを記載してください。 ### 補足情報(FW/ツールのバージョンなど) pc: Mac Rails: 5.2.6
同じ構成のコードが過去質問にありますが、
https://teratail.com/questions/196609
同じところなんでしょうかね。
if文省略せずに書いてみましたか?
回答2件
あなたの回答
tips
プレビュー