Skip to content

Instantly share code, notes, and snippets.

@madx
Created June 12, 2009 13:04
Show Gist options
  • Save madx/128622 to your computer and use it in GitHub Desktop.
Save madx/128622 to your computer and use it in GitHub Desktop.
# 1.8.7, 1.9
def self.build(&block)
new.tap {|c| c.instance_eval(&block) }.buffer
end
# old:
def self.build(&block)
c = new
c.instance_eval(&block)
c.buffer
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment