Posted on 2008年10月6日 Posted by ちゅう 1件のコメント Posted in Development Tags: Rails デフォルトで用意されている Basic 認証の仕組みの使い方。ユーザ名 chihaya, パスワード password72 とすると、以下のようにして行える。 Rails5.1以降 class ApplicationController < ActionController::Base http_basic_authenticate_with name name: 'chihaya', password: 'password72' unless Rails.env.production? end 特定の処理でスキップしたい場合、 except を使うか、before_action で処理する # except を使う場合 class Na