# File lib/seed-fu/block_hash.rb, line 13 def method_missing(method_name, *args, &block) if method_name.to_s =~ /^(.*)=$/ && args.length == 1 && block.nil? @hash[$1] = args.first else super end end