Guest User

Untitled

a guest
Apr 25th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Foobar
  2. def undefine_setters
  3. [
  4. :foo=, :bar=
  5. ].each do |method|
  6. self.define_method(method) do |*args|
  7. method_missing(method, *args)
  8. end
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment