2015-05-01から1日間の記事一覧

Devise Controllerをカスタマイズする

オーバーライド用のcontrollerを生成する $ bundle exec rails g devise:controllers users app/controllers/usersに以下のcontrollerが生成されます。 confirmations_controller.rb omniauth_callbacks_controller.rb passwords_controller.rb registration…

画像を圧縮する

メモ 背景に画像をおきたいけど、画像サイズが大きいとレンダリングが遅くなっちゃうので圧縮したい。 COMPRESSORを使いました。 Compressor.io - optimize and compress your images and photoscompressor.io

Deviseログイン画面のlayoutを変更する

方法① application_controller.rbでlayoutを切り替える方法。 devise以外のcontrollerでもつねに判断が入るので、なんとなくスッキリしないような。 class ApplicationController < ActionController::Base layout :layout_by_resource protected def layout…