Skip to content

Instantly share code, notes, and snippets.

@asterite
Created January 22, 2015 14:24
Show Gist options
  • Save asterite/cc29466677b4824a05ae to your computer and use it in GitHub Desktop.
Save asterite/cc29466677b4824a05ae to your computer and use it in GitHub Desktop.
require "ecr/macros"
record Person, name, age
class PersonView
getter person
def initialize(@person)
end
ecr_file "person_view.ecr"
end
person = Person.new "John", 20
view = PersonView.new person
puts view.to_s
Hi, I'm <%= person.name %> and I'm <%= person.age %> years old
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment