Skip to content

Instantly share code, notes, and snippets.

@rapsad
Created April 3, 2017 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rapsad/a2379928a6990e0f73c32b5bcec8f04e to your computer and use it in GitHub Desktop.
Save rapsad/a2379928a6990e0f73c32b5bcec8f04e to your computer and use it in GitHub Desktop.
# 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