Skip to content

Instantly share code, notes, and snippets.

@Hirurg103
Created April 11, 2014 11:29
Show Gist options
  • Save Hirurg103/10460283 to your computer and use it in GitHub Desktop.
Save Hirurg103/10460283 to your computer and use it in GitHub Desktop.
class C
def method_missing(name, *args)
name.to_s.end_with?('=') ? instance_variable_set("@#{ name[0..-2] }", args[0]) : instance_variable_get("@#{ name }")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment