Displaying 1 result from an estimated 1 matches for "tarruby".
Did you mean:
  tar2ruby
  
2010 May 29
0
Tar archive extract to buffer and offer for view / download
I want to open a tar.gz archive and display the content as a folder
structure and offer possibility to download and view the content. The
archive should not be compressed to a folder but only to a buffer.
Helper:
  require ''tarruby''
  def testFu
    File.directory?(log_folder) or return "Log folder ''#{log_folder}''
doesn''t exist."
    log_archive = File.expand_path(@log.log_archive,log_folder)
    # a hash which i probably can access from my view
    $result = Hash.new
    Tar.gzop...