惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
H
Help Net Security
小众软件
小众软件
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
爱范儿
爱范儿
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园 - 【当耐特】
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
博客园_首页
Jina AI
Jina AI
D
Docker
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
SOLID Principles in Ruby on Rails
Shamila TP · 2026-05-30 · via DEV Community
Cover image for SOLID Principles in Ruby on Rails

Shamila TP

SOLID Principles in Ruby on Rails

SOLID is not a Rails or Ruby concept. It's a set of five object-oriented design principles that apply to any language/framework.

But Rails makes it surprisingly easy to violate all five of them.

Let's start with


Single Responsibility Principle

It states a class should have only one reason to change.

A classic example is a User model that handles authentication, sends emails, and formats reports. That's three responsibilities. Instead, you'd extract email sending into a Mailer class and reporting into a service object.

class User
  def authenticate
  end

  def send_welcome_email
  end

  def generate_report
  end
end

The Fix

class User < ApplicationRecord
  has_many :orders

  validates :email, presence: true
end

class UserAuthenticationService
  def authenticate
  end
end

class UserMailer < ApplicationMailer
  def send_welcome_email(user)
  end
end

class UserReportService
  def generate_report
  end
end

In Rails, the most common places SRP breaks down are: fat models stuffed with business logic, controllers that do too much, and callbacks that silently trigger side effects.


Open/Closed Principle

A class should be open for extension but closed for modification.

In practice this means: when you need new behaviour, add new code — don't change existing code. This protects stable, tested behaviour from being accidentally broken by new requirements.

class IssueTicketProcessor
  def report_ticket(ticket_type, ticket)
    case ticket_type
    when :hotsos
      p "Processing hotsos ticket : #{ticket}"
    when :know_cross
      p "Processing know_cross ticket : #{ticket}"
    end
  end
end

IssueTicketProcessor.new.report_ticket(:hotsos, "ac not working")

Every time a new issue ticket type comes, this class has to be changed.

The Fix

class TicketIssuer
  def process(ticket)
    raise NotImplementedError
  end
end

class HOTSOSTicketing < TicketIssuer
  def process(ticket)
    puts "Handling HOTSOS ticket: #{ticket}"
  end
end

class KNOWCROSSTicketing < TicketIssuer
  def process(ticket)
    puts "Handling KNOWCROSS ticket: #{ticket}"
  end
end

class IssueTicketProcessor
  def report_ticket(ticket_issuer, ticket)
    ticket_issuer.process(ticket)
  end
end

IssueTicketProcessor.new.report_ticket(
  HOTSOSTicketing.new,
  "TV remote not working"
)

Suppose tomorrow we need to add HoteSoft — no need to change IssueTicketProcessor:

class HoteSoftTicketing < TicketIssuer
  def process(ticket)
    puts "Handling HoteSoft ticket: #{ticket}"
  end
end


Liskov Substitution Principle

Objects of a superclass should be replaceable with objects of its subclasses without breaking the application.

This one's about subclasses being replaceable for their base classes without breaking things.

The Problem

class PaymentMethod
  def process(amount)
    raise NotImplementedError
  end
end

class PaypalPayment < PaymentMethod
  def process(amount)
    p "processing paypal payment"
  end
end

class CreditCardPayment < PaymentMethod
  def process(amount, details)       # ← different signature! violates LSP
    p "processing creditcard payment"
  end
end

class PaymentProcessor
  def process(payment_method, amount)
    payment_method.process(amount)
  end
end

payment_method = CreditCardPayment.new
PaymentProcessor.new.process(payment_method, '100')
# Will raise error — CreditCardPayment#process expects 2 arguments

LSP means a subclass should honor the contract of its parent. The fix is to match the parent's method signature:

class CreditCardPayment < PaymentMethod
  def process(amount)
    p "processing creditcard payment"
  end
end


Interface Segregation Principle

No class should be forced to depend on methods it does not use.

Rails-ish Example

Bad

class PaymentGateway
  def charge; end
  def refund; end
  def create_subscription; end
end

Now CashPaymentGateway < PaymentGateway only supports charge, but the parent contract forces it to also carry refund and create_subscription.

The Fix — split into focused modules

module Chargeable
  def charge(amount); end
end

module Refundable
  def refund(amount); end
end

module Subscribable
  def create_subscription(plan); end
end

Since Cash only supports charging, include only Chargeable:

class CashPaymentGateway
  include Chargeable

  def charge(amount)
    puts "Cash payment #{amount}"
  end
end


Dependency Inversion Principle

High-level modules should not depend on low-level modules. Both should depend on abstractions.

Before DIP

class UserRegistration
  def register
    GmailService.new.send_email
  end
end

UserRegistration directly depends on GmailService. If Gmail is replaced with SendGrid, we must modify UserRegistration. This creates tight coupling.

After DIP

class EmailService
  def send_email
    raise NotImplementedError
  end
end

class GmailService < EmailService
  def send_email
    puts "Sending mail via Gmail"
  end
end

class SendGridService < EmailService
  def send_email
    puts "Sending mail via SendGrid"
  end
end

class UserRegistration
  def register(email_service)
    email_service.send_email
  end
end

# Usage:
UserRegistration.new.register(GmailService.new)

Now there's loose coupling and easier testing.

Before DIP

UserRegistration --> GmailService

After DIP

UserRegistration --> EmailService
                         ^
                         |
          ----------------------------
          |                          |
          v                          v
    GmailService            SendGridService


Putting it all together

Principle Meaning
SRP One class, one responsibility.
OCP Extend behavior without modifying existing code.
LSP Child classes must honor the parent contract.
ISP Keep interfaces small and focused.
DIP High-level modules should depend on abstractions.

In a Rails production codebase, here's how they map to common pain points:

  • Models growing past 300 lines → SRP
  • Adding a new feature requires touching existing classes → OCP
  • Subclass behaviour is surprising or inconsistent → LSP
  • Including a concern drags in methods you don't need → ISP
  • Tests require heavy mocking of third-party services → DIP

That's the kind of codebase that scales!