Suppose I want to define a method name(:key) using the Ruby Module Mixin metaprogramming spell (creating my own little DSL)
module MyDsl
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
def mymethod(name)
# name("key")
method_name = "#{name}".to_sym
define_method(method_name) do |arg|
# ...
end
end
end
end
How can I define the methods
name[:key]
name[:key]=val
name[:key]+=3
name[:key]++
and so on
What is the syntax for the Ruby define_method(method_name) to allow specifying the [] array / hash access and to set values, increment values, and so on?
++operator. – tadman Jun 14 '12 at 18:17ri Module#define_methodfrom the command-line. – the Tin Man Jun 14 '12 at 19:19