Skip to content

Instantly share code, notes, and snippets.

@everaldo
Created May 28, 2013 19:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save everaldo/5665498 to your computer and use it in GitHub Desktop.
Save everaldo/5665498 to your computer and use it in GitHub Desktop.

Refactoring - Ruby Edition

Composing Methods

Extract Method

Inline Method

Inline Temp

Replace Temp with Query

Replace Temp with Chain

Introduce Explaining Variable

Split Temporary Variable

Remove Assignments to Parameters

Replace Method with Method Object

Substitute Algorithm

Replace Loop with Collection Closure Method

Extract Surrounding Method

Introduce Class Annotation

Introduce Named Parameter

Remove Named Parameter

Remove Unused Default Parameter

Dynamic Method Definition

Replace Dynamic Receptor with Dynamic Method Definition

Isolate Dynamic Receptor

Move Eval from Runtime to Parse Time

Moving Features Beetween Objects

Move Method

Move Field

Extract Class

Inline Class

Hide Delegate

Remove Middle Man

Organizing Data

Self Encapsulate Field

Replace Data Value with Object

Change Value to Reference

Change Reference to Value

Replace Array with Object

Replace Hash with Object

Change Unidirectional Association to Bidirectional

Change Bidirectional Association to Unidirectional

Replace Magic Number with Symbolic Constant

Encapsulate Collection

Replace Record with Data Class

Replace Type Code with Polymorphism

Replace Type Code with Module Extension

Replace Type Code with State/Strategy

Replace Subclass with Fields

Lazily Initialized Attribute

Eagerly Initialized Attribute

Simplifying Conditional Expressions

Decompose Conditional

Recompose Conditional

Consolidate Conditional Expression

Consolidate Duplicate Conditional Fragments

Remove Control Flag

Replace Nested Conditional with Guard Clauses

Replace Conditional with Polymorphism

Introduce Null Object

Introduce Assertion

Making Method Calls Simpler

Rename Method

Add Parameter

Remove Parameter

Separate Query from Modifier

Parameterize Method

Replace Parameter with Explicit Methods

Preserve Whole Object

Replace Parameter with Method

Introduce Parameter Object

Remove Setting Method

Hide Method

Replace Constructor with Factory Method

Replace Error Code with Exception

Replace Exception with Test

Introduce Gateway

Introduce Expression Builder

Dealing with Generalization

Pull Up Method

Push Down Method

Extract Module

Inline Module

Extract Subclass

Introduce Inheritance

Collapse Hierarchy

Form Template Method

Replace Inheritance with Delegation

Replace Delegation with Hierarchy

Replace Abstract Superclass with Module

Big Refactorings

The Nature of the Game

Why Big Refactorings Are Important

Four Big Refactorings

Tease Apart Inheritance

Convert Procedural Design to Objects

Separate Domain from Presentation

Extract Hierarchy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment