Created
April 3, 2017 17:41
-
-
Save rapsad/a2379928a6990e0f73c32b5bcec8f04e to your computer and use it in GitHub Desktop.
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
# simple delegator | |
class Profile < SimpleDelegator | |
def title | |
"#{first_name} #{last_name}'s profile" | |
end | |
end | |
# controller | |
class ProfilesController < ApplicationController | |
def show | |
@profile = Profile.new(current_user) | |
end | |
end | |
# view | |
<h1><%= profile.title %></h1> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment