class DSL::Maker::HashType
Public Class Methods
new(rv)
click to toggle source
# File lib/dsl/maker.rb, line 101 def initialize(rv) @rv = rv end
Public Instance Methods
method_missing(methname, *args)
click to toggle source
# File lib/dsl/maker.rb, line 109 def method_missing(methname, *args) @rv[methname.to_s] = args[0] unless methname.to_s =~ /__.*__/ end
respond_to_missing?(*args)
click to toggle source
# File lib/dsl/maker.rb, line 105 def respond_to_missing?(*args) true end