Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created May 23, 2015 02:24
Show Gist options
  • Save igaiga/29a447a8e9326020faf9 to your computer and use it in GitHub Desktop.
Save igaiga/29a447a8e9326020faf9 to your computer and use it in GitHub Desktop.
str = "a\nb\nc"
File.open("dumped.txt","w") do |f|
f.puts Marshal.dump(str)
end
str_reloaded = File.open("dumped.txt", "r") do |f|
Marshal.load(f.read)
end
p str_reloaded #=> "a\nb\nc"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment