Sha256: 1eee91a16130b6688f685a8539f96d9c8849ad9153a783c4ec4bb3f9881ae776

Contents?: true

Size: 661 Bytes

Versions: 1

Compression:

Stored size: 661 Bytes

Contents

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

  end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rwdlanguage-0.01 code/superant.com.language/loadconfigurationrecord.rb