Sha256: 3365a7bee0eb742d7a58e6a5d10541bb0a41c9c26fd7d6af0fc438adc3d7f79f

Contents?: true

Size: 690 Bytes

Versions: 1

Compression:

Stored size: 690 Bytes

Contents

   # this method puts the configuration rexord on the screen
  def loadrwdshellconfiguration
 
         require 'fileutils'
          
               rwdshellname = "rwdwshell-" + RwdShellVersion + ".cnf"
               @a_rshellconfigurationfilename = rwdshellname 
               
	      
        begin # exception trapped block
       
       Dir.chdir($progdir)
	      fileName = File.join(ConfigurationDir, rwdshellname)
        
        
	      fd = File.open(fileName,"r")
	      @a_rshellconfiguration=        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
bigtinker-0.95 code/superant.com.rwdshell/loadconfigurationrecord.rb