13 14 15 16 17 18
# File 'lib/momo/momoscope.rb', line 13 def method_missing(name, *args, &block) if /^[[:upper:]]/.match(name) == nil raise "Invalid property name: #{name}" end @props[name] = Momo.resolve(args[0], @options, &block) end