# install rwdtinker applet from a long directory location def installgemapplet require 'fileutils' require 'lib/zip/zip' nametext = "%s" % [@a_installapplet] begin # exception trapped block fullname = nametext + ".zip" zf = Zip::ZipFile.new(fullname) zf.sort.each { |entry| zf.extract(entry.to_s, entry.to_s) } rescue if $DEBUG $stderr.puts "unzip error - applet may not be installed correctly" end @installapplettext = " .. " end # exception rescue @nametextbase = File.basename(nametext) @returninitateresults = initiateapplet(@nametextbase) @installapplettext = Message[:applet_installed] + " " + @returninitateresults RWDWindow.new($rwd_gui_tinker, @rwd_window).render("DEFAULT") end