SlideShare a Scribd company logo
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

Design Principles
Design PrinciplesDesign Principles
Design Principles
Kartheek Nagasuri
 
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
Mohammad Shawahneh
 
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
Anna Shymchenko
 
Learning solid principles using c#
Learning solid principles using c#Learning solid principles using c#
Learning solid principles using c#
Aditya Kumar Rajan
 
Solid principles of oo design
Solid principles of oo designSolid principles of oo design
Solid principles of oo design
Confiz
 
Developing solid applications
Developing solid applicationsDeveloping solid applications
Developing solid applications
Nilesh Bangar
 
Design for Testability
Design for Testability Design for Testability
Design for Testability
Pawel Kalbrun
 
SOLID Principles
SOLID PrinciplesSOLID Principles
SOLID Principles
akbarashaikh
 
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
ottawaruby
 
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
Katerina Trajchevska
 
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
Codemotion
 
Software development fundamentals
Software development fundamentalsSoftware development fundamentals
Software development fundamentals
Alfred Jett Grandeza
 
Solid principles
Solid principlesSolid principles
Solid principles
Ahmed Saad Khames
 
Design principle vs design patterns
Design principle vs design patternsDesign principle vs design patterns
Design principle vs design patterns
Prabhakar Sharma
 
SOLID principles
SOLID principlesSOLID principles
SOLID principles
Joanna Lamch
 
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
ADEDAMOLA ADEDAPO
 
Solid principles
Solid principlesSolid principles
Solid principles
Kumaresh Chandra Baruri
 
Buddy navigator
Buddy navigatorBuddy navigator
Buddy navigator
Rishabh Gupta
 
Introducing Clean Architecture
Introducing Clean ArchitectureIntroducing Clean Architecture
Introducing Clean Architecture
Roc Boronat
 
Solid
SolidSolid

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
 
Introducing Clean Architecture
Introducing Clean ArchitectureIntroducing Clean Architecture
Introducing Clean Architecture
 
Solid
SolidSolid
Solid
 

Recently uploaded

Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
Zilliz
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
David Brossard
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
Zilliz
 
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial IntelligenceAI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
IndexBug
 
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdfAI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
Techgropse Pvt.Ltd.
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
Jason Packer
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
Wouter Lemaire
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
Zilliz
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
Mariano Tinti
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Speck&Tech
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
Claudio Di Ciccio
 

Recently uploaded (20)

Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
 
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial IntelligenceAI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
 
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdfAI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
AI-Powered Food Delivery Transforming App Development in Saudi Arabia.pdf
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
 
UI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentationUI5 Controls simplified - UI5con2024 presentation
UI5 Controls simplified - UI5con2024 presentation
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”“I’m still / I’m still / Chaining from the Block”
“I’m still / I’m still / Chaining from the Block”
 

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)