SlideShare a Scribd company logo
1 of 22
Object Oriented
Design In Ruby
Presented By- Swapnil Abnave

Kiprosh, 5 December 2013
CHANGE
Fact: your application is going to
change. How will your application
handle that change?
Your App may be o

o

o

o

Rigid: Making a change somewhere will
break something somewhere else.
Fragile: You can’t predict where that break
will be.

Immobile: It’s hard to change/re-use your
code.
Viscous: It’s easier to do the wrong thing

than to fix things.
Design is all about
dependencies
• If you refer to something, you depend

on it.
• When the things you depend on

change, you must change.
SOLID
●

Single Responsibility

●

Open Closed

●

Liskov Substitution

●

Interface Segregation

●

Dependency Inversion
Single Responsibility

There should never be more than
one reason for a class to change
Open/Closed

A module should be open for
extension but closed for
modification
Dependency Inversion

Depend upon abstractions.
Do not depend upon concretions
IGNORABLE RULES
SOLID principles we can ignore in
ruby:
●

Interface Segregation

●

Liskov Substitution

WHY ?
Interface Segregation
●

Really only a problem for staticallytyped, compiled languages.

“Because we’re in Ruby, we don’t have
this problem! Win!”
●

“Dynamic languages obey this rule
in the most extreme way possible:
duck typing.”
Interface Segregation
• What is it ? - “Many client

specific interfaces are better
than one general purpose
interface”
Liskov Substitution
When you design, don’t break the
contract of the superclass in the
subclass.
DESIGN MIGHT SAVE YOU
To avoid dependencies, your design
should be:
●

Loosely coupled – D – Inject

●

Highly cohesive – SRP

●

Easily composable – Can be changed

●

Context independent – Can be
rearranged
Resistance
Resistance is a resource => Listen to what
the pain is telling you.
Listen to what the code smells are telling
you.
●

●

Embrace the friction.

●

Fix the problem.
If testing seems hard – examine your
design.
Your Checkpoint for Design
When you get to the refactor stage of
red-green-refactor, ask yourself …
●

Is it DRY?

●

Does it have just one responsibility?

●

●

Does everything change at the same
rate?
Does it depend on things that change
"Triangle of Responsibility"
Refactoring
●

●

●

Refactor
Extract - Pull functionality out
where necessary
Inject - Inject that new
dependency into place from which
it was extracted
Act like an idiot
●

●

●

What if I don't know where I want
this refactoring to take me?
That's OK. In fact, that's typical.
"Refactor, not because you know
the abstraction, but because you
want to find it."
Act like an idiot
●

●

"You don't have to know where
you're going to successfully
refactor."

When you see someone's code
and think it's beautiful and you
wonder how they thought of
it, they didn't. They evolved it to
that point.
Dependency Injection
When injecting dependencies into a
class, do so only via arguments to
the
#initialize method
def
intialize(downloader=FTPDownloader.ne
w)
@downloader = downloader
Argument Order
Dependency
When you need to inject a few
dependencies, you can use an options
hash to remove the dependency on the
order of the arguments
def intialize(opts)
@env = opts[:env] || Rails.env

filename = opts[:filename]
end
Dependency is unavoidable
How to assess: "Does each object
depend on things that change less
than it does?”
●

Line up the objects from left to right
Left = lower likelihood of change

Right = higher likelihood of change
●

Only depend on things on your left
Conclude to begin with design
TDD is not enough
DRY is not enough

Design because you expect your
application to succeed(and to
change in the future to come)

More Related Content

Similar to Object Oriented Design in Ruby

Developing solid applications
Developing solid applicationsDeveloping solid applications
Developing solid applications
Nilesh Bangar
 

Similar to Object Oriented Design in Ruby (20)

Design Principles
Design PrinciplesDesign Principles
Design Principles
 
Object Oriented, Design patterns and data modelling worshop
Object Oriented, Design patterns and data modelling worshopObject Oriented, Design patterns and data modelling worshop
Object Oriented, Design patterns and data modelling worshop
 
Evgeniy Khyst - why does software design matter and how to keep it in good shape
Evgeniy Khyst - why does software design matter and how to keep it in good shapeEvgeniy Khyst - why does software design matter and how to keep it in good shape
Evgeniy Khyst - why does software design matter and how to keep it in good shape
 
Learning solid principles using c#
Learning solid principles using c#Learning solid principles using c#
Learning solid principles using c#
 
Solid principles of oo design
Solid principles of oo designSolid principles of oo design
Solid principles of oo design
 
Developing solid applications
Developing solid applicationsDeveloping solid applications
Developing solid applications
 
Design for Testability
Design for Testability Design for Testability
Design for Testability
 
SOLID Principles
SOLID PrinciplesSOLID Principles
SOLID Principles
 
July 2012 Ruby Tuesday - Lana Lodge - Refactoring Lighting Talk
July 2012 Ruby Tuesday - Lana Lodge - Refactoring Lighting TalkJuly 2012 Ruby Tuesday - Lana Lodge - Refactoring Lighting Talk
July 2012 Ruby Tuesday - Lana Lodge - Refactoring Lighting Talk
 
Becoming a better developer by using the SOLID design principles
Becoming a better developer by using the SOLID design principlesBecoming a better developer by using the SOLID design principles
Becoming a better developer by using the SOLID design principles
 
Ofir Dagan - (Don’t) Blame it on React Native - Codemotion Rome 2019
Ofir Dagan - (Don’t) Blame it on React Native - Codemotion Rome 2019Ofir Dagan - (Don’t) Blame it on React Native - Codemotion Rome 2019
Ofir Dagan - (Don’t) Blame it on React Native - Codemotion Rome 2019
 
Software development fundamentals
Software development fundamentalsSoftware development fundamentals
Software development fundamentals
 
Solid principles
Solid principlesSolid principles
Solid principles
 
Design principle vs design patterns
Design principle vs design patternsDesign principle vs design patterns
Design principle vs design patterns
 
SOLID principles
SOLID principlesSOLID principles
SOLID principles
 
S.O.L.I.D: Principles of OOP and Agile design
S.O.L.I.D: Principles of OOP and Agile design S.O.L.I.D: Principles of OOP and Agile design
S.O.L.I.D: Principles of OOP and Agile design
 
Solid principles
Solid principlesSolid principles
Solid principles
 
Buddy navigator
Buddy navigatorBuddy navigator
Buddy navigator
 
Solid
SolidSolid
Solid
 
Design principles
Design principlesDesign principles
Design principles
 

Recently uploaded

Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
FIDO Alliance
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
FIDO Alliance
 
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdfBreaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
UK Journal
 
Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for Success
UXDXConf
 

Recently uploaded (20)

Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptx
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
 
WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024
 
WebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM PerformanceWebAssembly is Key to Better LLM Performance
WebAssembly is Key to Better LLM Performance
 
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdfBreaking Down the Flutterwave Scandal What You Need to Know.pdf
Breaking Down the Flutterwave Scandal What You Need to Know.pdf
 
Intro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераIntro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджера
 
TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024
 
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdfLinux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
 
Overview of Hyperledger Foundation
Overview of Hyperledger FoundationOverview of Hyperledger Foundation
Overview of Hyperledger Foundation
 
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
 
Collecting & Temporal Analysis of Behavioral Web Data - Tales From The Inside
Collecting & Temporal Analysis of Behavioral Web Data - Tales From The InsideCollecting & Temporal Analysis of Behavioral Web Data - Tales From The Inside
Collecting & Temporal Analysis of Behavioral Web Data - Tales From The Inside
 
Using IESVE for Room Loads Analysis - UK & Ireland
Using IESVE for Room Loads Analysis - UK & IrelandUsing IESVE for Room Loads Analysis - UK & Ireland
Using IESVE for Room Loads Analysis - UK & Ireland
 
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
 
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
Event-Driven Architecture Masterclass: Integrating Distributed Data Stores Ac...
 
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdfHow Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
 
Microsoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - QuestionnaireMicrosoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - Questionnaire
 
Introduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptxIntroduction to FIDO Authentication and Passkeys.pptx
Introduction to FIDO Authentication and Passkeys.pptx
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for Success
 

Object Oriented Design in Ruby

  • 1. Object Oriented Design In Ruby Presented By- Swapnil Abnave Kiprosh, 5 December 2013
  • 2. CHANGE Fact: your application is going to change. How will your application handle that change?
  • 3. Your App may be o o o o Rigid: Making a change somewhere will break something somewhere else. Fragile: You can’t predict where that break will be. Immobile: It’s hard to change/re-use your code. Viscous: It’s easier to do the wrong thing than to fix things.
  • 4. Design is all about dependencies • If you refer to something, you depend on it. • When the things you depend on change, you must change.
  • 5. SOLID ● Single Responsibility ● Open Closed ● Liskov Substitution ● Interface Segregation ● Dependency Inversion
  • 6. Single Responsibility There should never be more than one reason for a class to change
  • 7. Open/Closed A module should be open for extension but closed for modification
  • 8. Dependency Inversion Depend upon abstractions. Do not depend upon concretions
  • 9. IGNORABLE RULES SOLID principles we can ignore in ruby: ● Interface Segregation ● Liskov Substitution WHY ?
  • 10. Interface Segregation ● Really only a problem for staticallytyped, compiled languages. “Because we’re in Ruby, we don’t have this problem! Win!” ● “Dynamic languages obey this rule in the most extreme way possible: duck typing.”
  • 11. Interface Segregation • What is it ? - “Many client specific interfaces are better than one general purpose interface”
  • 12. Liskov Substitution When you design, don’t break the contract of the superclass in the subclass.
  • 13. DESIGN MIGHT SAVE YOU To avoid dependencies, your design should be: ● Loosely coupled – D – Inject ● Highly cohesive – SRP ● Easily composable – Can be changed ● Context independent – Can be rearranged
  • 14. Resistance Resistance is a resource => Listen to what the pain is telling you. Listen to what the code smells are telling you. ● ● Embrace the friction. ● Fix the problem. If testing seems hard – examine your design.
  • 15. Your Checkpoint for Design When you get to the refactor stage of red-green-refactor, ask yourself … ● Is it DRY? ● Does it have just one responsibility? ● ● Does everything change at the same rate? Does it depend on things that change
  • 16. "Triangle of Responsibility" Refactoring ● ● ● Refactor Extract - Pull functionality out where necessary Inject - Inject that new dependency into place from which it was extracted
  • 17. Act like an idiot ● ● ● What if I don't know where I want this refactoring to take me? That's OK. In fact, that's typical. "Refactor, not because you know the abstraction, but because you want to find it."
  • 18. Act like an idiot ● ● "You don't have to know where you're going to successfully refactor." When you see someone's code and think it's beautiful and you wonder how they thought of it, they didn't. They evolved it to that point.
  • 19. Dependency Injection When injecting dependencies into a class, do so only via arguments to the #initialize method def intialize(downloader=FTPDownloader.ne w) @downloader = downloader
  • 20. Argument Order Dependency When you need to inject a few dependencies, you can use an options hash to remove the dependency on the order of the arguments def intialize(opts) @env = opts[:env] || Rails.env filename = opts[:filename] end
  • 21. Dependency is unavoidable How to assess: "Does each object depend on things that change less than it does?” ● Line up the objects from left to right Left = lower likelihood of change Right = higher likelihood of change ● Only depend on things on your left
  • 22. Conclude to begin with design TDD is not enough DRY is not enough Design because you expect your application to succeed(and to change in the future to come)