2010-08-22から1日間の記事一覧

application_controller.rbにロケールをセットするメソッドを追加する

config/locale配下にen.yml, ja.ymlなどの言語ファイルが必要です。 session[:locale]の設定は、それようのコントローラを作成しました。 class ApplicationController < ActionController::Base #helper :all # include all helpers, all the time protect_…

メールアドレスの入力チェック

忘れやすいので、メモしておきます。 class Model validates_presence_of :email validates_format_of :email, :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/i, :on => :create validates_confirmation_of :email, :message => "should match conf…