This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RedDotRubyConf 2016 links & resources | |
=== | |
| |
📆 Jun 23-24, 2016 | |
| |
🌏 Web site: http://reddotrubyconf.com/ Twitter: http://twitter.com/reddotrubyconf | |
| |
Credits to [@cheeaun on Twitter](https://twitter.com/cheeaun) | |
| |
🕙 Previously, on RedDotRubyConf... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Rooms | |
class DescriptionGenerator | |
attr_reader :room, :locale | |
def initialize(room, locale="en") | |
@room = room | |
@locale = locale | |
end | |
def generate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Rooms | |
class TitleGenerator | |
attr_reader :room, :locale | |
def initialize(room, locale="en") | |
@room = room | |
@locale = locale | |
end | |
def generate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Assume you also have the following "general case" presenters | |
# app/presenters/cancellation_policy_presenter.rb | |
# app/presenters/daily_price_presenter.rb | |
# app/presenters/weekly_price_presenter.rb | |
# Now for some presenter fun.. | |
# app/presenters/room_presenter.rb | |
class RoomPresenter | |
# gives you access to RoomPresenter#cancellation_policy (see below) |
NewerOlder