# File lib/kwartz/main.rb, line 58 def initialize(option_table, properties={}) @_option_table = option_table @_properties = properties buf = [] optchars = {} option_table.each do |char, key, argname| buf << "def #{key}; @#{key}; end; def #{key}=(val); @#{key}=val; end\n" end instance_eval buf.join end