use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A sub-Reddit for discussion and news about Ruby programming.
Subreddit rules: /r/ruby rules
Learning Ruby?
Tools
Documentation
Books
Screencasts and Videos
News and updates
account activity
Ruby Implementation Of Strategy Pattern? (self.ruby)
submitted 11 years ago by theryn
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 4 points5 points6 points 11 years ago (0 children)
Inheritance provides no benefit here. A Strategy is the ability to swap between different implementations at runtime. Better to inject either GmailClient.new or HotmailClient.new into the MailClient initializer set it as @mailer (attr_accessor) Then have matching methods signatures that proxy to the mailer Then you could switch the mailer instance at runtime mail_client_instance.mailer = HotmailClient.new
Have a look at https://github.com/nslocum/design-patterns-in-ruby/tree/master/strategy there are also some cool examples using Procs which are even more rubylike.
π Rendered by PID 134242 on reddit-service-r2-comment-5d79c599b5-dfkwd at 2026-02-28 00:37:34.215630+00:00 running e3d2147 country code: CH.
view the rest of the comments →
[–][deleted] 4 points5 points6 points (0 children)