Sha256: 2bddf149473b4fb53bd34c160538f00023eab45836414372150fb675d41c7632

Contents?: true

Size: 679 Bytes

Versions: 2

Compression:

Stored size: 679 Bytes

Contents

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

  end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rwdhypernote-0.12 code/superant.com.hypernote/loadconfigurationrecord.rb
rwdhypernote-0.13 code/superant.com.hypernote/loadconfigurationrecord.rb