show/hide this revision's text 4 added 2 characters in body

Ruby:

#1, 3
IO.readlines("file.ext").to_s;

#2, 4
IO.open("file.ext"File.open("file.ext", "w") do |out|
  out << 'string'
end
show/hide this revision's text 3 deleted 6 characters in body

Ruby:

#1, 3
IO.readlines("file.ext").join($/)IO.readlines("file.ext").to_s;

#2, 4
IO.open("file.ext", "w") do |out|
  out << stringContents
'string'
end
show/hide this revision's text 2 added 339 characters in body

Ruby:

#1, 3
IO.readlines("file.ext").join($/);

#2, 4
IO.open("file.ext", "w") do |out|
  out << stringContents
end
show/hide this revision's text 1