Deviseを利用しユーザー登録時に確認メールを送信し、 メール本文のURLから本登録を行うまでログインできないようにしてみた。 開発環境で動作するまで確認済み。 usersテーブルのMigrationのt.confirmableのコメントを外す class DeviseCreateUsers < ActiveRecord::Migration def self.up create_table(:users) do |t| t.database_authenticatable :null => false t.recoverable t.rememberable t.trackable # t.encryptable t.confirmable # t.lockable :lock_strategy => :failed_attempts, :unlock_strategy => :bot