Refactored to use File.join.

This commit is contained in:
Pistos 2009-06-27 11:40:06 -04:00
parent 72892c6aaa
commit e10e6f497d
2 changed files with 6 additions and 6 deletions

View file

@ -132,11 +132,11 @@ module Diakonos
init_help
@debug = File.new( "#{@diakonos_home}/debug.log", 'w' )
@list_filename = @diakonos_home + '/listing.txt'
@diff_filename = @diakonos_home + '/text.diff'
@help_filename = "#{@help_dir}/about-help.dhf"
@error_filename = "#{@diakonos_home}/diakonos.err"
@debug = File.new( File.join( @diakonos_home, 'debug.log' ), 'w' )
@list_filename = File.join( @diakonos_home, 'listing.txt' )
@diff_filename = File.join( @diakonos_home, 'text.diff' )
@help_filename = File.join( @help_dir, 'about-help.dhf' )
@error_filename = File.join( @diakonos_home, 'diakonos.err' )
@win_main = nil
@win_context = nil

View file

@ -1,4 +1,4 @@
module Diakonos
VERSION = '0.8.11'
LAST_MODIFIED = 'June 26, 2009'
LAST_MODIFIED = 'June 27, 2009'
end