merge and 80 char limit on src

This commit is contained in:
Marc Peabody
2010-09-22 15:14:11 -04:00
2 changed files with 37 additions and 33 deletions

View File

@@ -110,6 +110,8 @@ module EdgeCase
File.open(PROGRESS_FILE_NAME,'r') do |f| File.open(PROGRESS_FILE_NAME,'r') do |f|
@_contents = f.read.to_s.gsub(/\s/,'').split(',') @_contents = f.read.to_s.gsub(/\s/,'').split(',')
end end
else
@_contents = []
end end
end end
@_contents @_contents

View File

@@ -110,6 +110,8 @@ module EdgeCase
File.open(PROGRESS_FILE_NAME,'r') do |f| File.open(PROGRESS_FILE_NAME,'r') do |f|
@_contents = f.read.to_s.gsub(/\s/,'').split(',') @_contents = f.read.to_s.gsub(/\s/,'').split(',')
end end
else
@_contents = []
end end
end end
@_contents @_contents
@@ -169,39 +171,39 @@ module EdgeCase
def end_screen def end_screen
completed = <<-ENDTEXT completed = <<-ENDTEXT
,, , ,, ,, , ,,
: ::::, :::, : ::::, :::,
, ,,: :::::::::::::,, :::: : , , ,,: :::::::::::::,, :::: : ,
, ,,, ,:::::::::::::::::::, ,: ,: ,, , ,,, ,:::::::::::::::::::, ,: ,: ,,
:, ::, , , :, ,:::::::::::::::::::, ::: ,:::: :, ::, , , :, ,::::::::::::::::::, ::: ,::::
: : ::, ,:::::::: ::, ,:::: : : ::, ,:::::::: ::, ,::::
, ,::::: :,:::::::,::::, , ,::::: :,:::::::,::::,
,: , ,:,,: ::::::::::::: ,: , ,:,,: :::::::::::::
::,: ,,:::, ,::::::::::::, ::,: ,,:::, ,::::::::::::,
,:::, :,,::: ::::::::::::, ,:::, :,,::: ::::::::::::,
,::: :::::::, Mountains are again merely mountains ,:::::::::::: ,::: :::::::, Mountains are again merely mountains ,::::::::::::
:::,,,:::::: :::::::::::: :::,,,:::::: ::::::::::::
,:::::::::::, ::::::::::::, ,:::::::::::, ::::::::::::,
:::::::::::, ,:::::::::::: :::::::::::, ,::::::::::::
::::::::::::: ,:::::::::::: ::::::::::::: ,::::::::::::
,:::::::::::: Ruby Koans ::::::::::::, :::::::::::: Ruby Koans ::::::::::::,
::::::::::::: ,::::::::::::, :::::::::::: ,::::::::::::,
,:::::::::::, , :::::::::::: :::::::::::, , ::::::::::::
,:::::::::::::, brought to you by ,,::::::::::::, ,:::::::::::::, brought to you by ,,::::::::::::,
:::::::::::::: ,:::::::::::: :::::::::::::: ,::::::::::::
::::::::::::::, ::::::::::::: ::::::::::::::, ,:::::::::::::
::::::::::::, EdgeCase Software Artisans , :::::::::::: ::::::::::::, EdgeCase Software Artisans , ::::::::::::
:,::::::::: :::: ::::::::::::: :,::::::::: :::: :::::::::::::
,::::::::::: ,: ,,:::::::::::::, ,::::::::::: ,: ,,:::::::::::::,
:::::::::::: ,::::::::::::::, :::::::::::: ,::::::::::::::,
:::::::::::::::::, :::::::::::::::: :::::::::::::::::, ::::::::::::::::
:::::::::::::::::::, :::::::::::::::: :::::::::::::::::::, ::::::::::::::::
::::::::::::::::::::::, ,::::,:, , ::::,::: ::::::::::::::::::::::, ,::::,:, , ::::,:::
:::::::::::::::::::::::, ::,: ::,::, ,,: :::: :::::::::::::::::::::::, ::,: ::,::, ,,: ::::
,:::::::::::::::::::: ::,, , ,, ,:::: ,:::::::::::::::::::: ::,, , ,, ,::::
,:::::::::::::::: ::,, , ,:::, ,:::::::::::::::: ::,, , ,:::,
,:::: , ,, ,:::: , ,,
,,, ,,,
ENDTEXT ENDTEXT
puts completed puts completed
end end