Sha256: 4211867d241cb555d6a410ce22dd54b10f5981b6e9e0ea3f0ece144b4c8e1746

Contents?: true

Size: 667 Bytes

Versions: 3

Compression:

Stored size: 667 Bytes

Contents

   # this method puts the configuration rexord on the screen
  def loadrwdfoldeditorconfiguration
 
         require 'fileutils'
          
               @a_foldeditconfigurationfilename = "rwdwfoldeditor.cnf" 
        
	      
        begin # exception trapped block
       
       Dir.chdir($progdir)
	      fileName = File.join(ConfigurationDir, @a_foldeditconfigurationfilename )
        
        
	      fd = File.open(fileName,"r")
	      @a_foldeditconfigurationfile=        fd.read
        fd.close
        rescue SystemCallError, StandardError
            $stderr.print "system call error: " + $!
        end # exception rescue

  end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
bigtinker-0.97 code/superant.com.foldeditor/loadconfigurationrecord.rb
rwdfoldeditor-0.05 code/superant.com.foldeditor/loadconfigurationrecord.rb
rwdfoldeditor-0.07 code/superant.com.foldeditor/loadconfigurationrecord.rb