Skip to content

Instantly share code, notes, and snippets.

@sighmin
Created September 29, 2015 19:52
Show Gist options
  • Save sighmin/5ae7cb89e79f23e9223f to your computer and use it in GitHub Desktop.
Save sighmin/5ae7cb89e79f23e9223f to your computer and use it in GitHub Desktop.
class BaseView < SimpleDelegator
def self.collection(objects)
objects.map { |obj| new obj }
end
end
class UserView < BaseView
...
end
users = User.popular(10)
users = UserView.collection(users)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment