Skip to content

Instantly share code, notes, and snippets.

/register.rb Secret

Created August 24, 2015 14:46
Show Gist options
  • Save anonymous/d662f612ca2230016e51 to your computer and use it in GitHub Desktop.
Save anonymous/d662f612ca2230016e51 to your computer and use it in GitHub Desktop.
class Generator
def register(field)
self.define_singleton_method("#{field}=".to_sym) do |value|
puts value
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment