Skip to content

Instantly share code, notes, and snippets.

@darrencauthon
Created February 4, 2016 20:07
Show Gist options
  • Save darrencauthon/1829311f690e481e69c8 to your computer and use it in GitHub Desktop.
Save darrencauthon/1829311f690e481e69c8 to your computer and use it in GitHub Desktop.
Simple view model in Ruby
class ViewModel
def initialize subject
@subject = subject
end
def method_missing meth, _, _
@subject.send meth
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment