shell
開発効率化 guard - ブラウザのリロードや RSpec の自動実行 rails コマンド rails new rails generate rails server unicorn ではなく unicorn-rails UI twitter-bootstrap-rails ではなく bootswatch-rails で Bootswatch を簡単に組み込む Bootstrap の f…
db/seeds.rb に下記を書く。 User.create(email: 'admin@example.com', password: 'password') User.create(email: 'manager@example.com', password: 'password') User.create(email: 'user@example.com', password: 'password') 下記で登録できる。 $ rake…
ログから 200ms 以上かかっている処理を見つけるワンライナー。 $ ruby -ne 'if /(\d+\.?\d+)ms/ then puts "#{$.} #{$1} #{$_}" if $1.to_f > 200; end' log/production.log 行番号と時間とログが表示される。 283026 232.7 I, [2014-12-04T10:55:27.899449…