Sha256: 464a24243003dffaa9e4f8f6b2c25fe89bacc9a91734c657967eade490ee7de9

Contents?: true

Size: 650 Bytes

Versions: 2

Compression:

Stored size: 650 Bytes

Contents

   # this method puts the configuration rexord on the screen
  def loadrwdhypernoteconfiguration
 
         require 'fileutils'
          
               @a_hypconfigurationfilename = "rwdwhypernote.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.15 code/superant.com.hypernote/loadconfigurationrecord.rb
rwdhypernote-0.16 code/superant.com.hypernote/loadconfigurationrecord.rb