fv17の日記

Webエンジニアの備忘用ブログです。主にWeb界隈の技術に関して書いています。

2018-12-04から1日間の記事一覧

Rails - content_tagの使い方

content_tagメモ before <div class="alert alert-<%= message_type %>"><%= message %></div> after <%= content_tag(:div, message, class: "alert alert-#{message_type}") %>

Rails - byebug gemを導入してdebuggerでデバッグする

debuggerの使い方メモ (RubyMineでいいじゃん感) 導入と使い方 byebug gemを導入 debuggerをソースに組み込む Railsを実行するとコマンドラインで該当箇所で止まって色々調査できる Ctrl-Dで抜ける 代表的なコマンド コマンド 説明 eval 変数の値、メソッド…