# Author:: Nicolas Desprès . # Copyright:: Copyright (c) 2005 Uttk Team. All rights reserved. # License:: LGPL # $Id: /w/fey/uttk/trunk/lib/uttk/loaders/Ruby.rb 8778 2005-09-26T04:34:48.103938Z ertai $ module Uttk module Loaders class Ruby < Loader include Concrete def load ( aString, symtbl ) test = Uttk.uttk_eval(aString, symtbl, symtbl[:realname].to_s) test.symtbl = symtbl if test.symtbl.nil? test end end # class Ruby end # module Loaders end # module Uttk