rails-auth-with-devise

Installation
SKILL.md

Rails Authentication with Devise

Devise is the most popular authentication solution for Rails, providing a complete MVC solution with 10 modular components.

Quick Setup

# Add to Gemfile
bundle add devise

# Install Devise
rails generate devise:install

# Generate User model with authentication
rails generate devise User

# Run migrations
rails db:migrate
Installs
11
GitHub Stars
14
First Seen
Feb 17, 2026
rails-auth-with-devise — shoebtamboli/rails_claude_skills