今回はツイート詳細表示機能実装のアウトプットです。 【アウトプット】 1.ルーティングを設定 config/routes.rb ``` resources :tweets, only: [:index, :new, :create, :destroy, :edit, :update, :show] ``` ※《show》アクションを追加するが、7つ全てのアクションを設定したためonlyオプションが不要となる。 よって ``` resources :tweets ``` のみとなる。 2.詳細画面へ遷移するボタンを作成 app/views/tweets/index.html.erb ``` <l…