Sha256: 136db4f12a59ee387e8302de2bc2d4201d663c1fc442d3233b60b021f55681d1

Contents?: true

Size: 520 Bytes

Versions: 4

Compression:

Stored size: 520 Bytes

Contents

  def installgemapplet
   require 'fileutils'
   require 'extras/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)
                     }
   @installapplettext = Message[:applet_installed]  
   
       rescue
            @installapplettext = "unzip error - applet may not be installed correctly"
        end # exception rescue

  end

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
rwdmovies-0.90 code/superant.com.rwdtinkerbackwindow/installgemapplet.rb
rwdshell-0.95 code/superant.com.rwdtinkerbackwindow/installgemapplet.rb
rwdtinker-1.53 code/superant.com.rwdtinkerbackwindow/installgemapplet.rb
rwdtinker-1.52 code/superant.com.rwdtinkerbackwindow/installgemapplet.rb