Skip to content

Instantly share code, notes, and snippets.

@knwang
Created November 27, 2014 04:21
Show Gist options
  • Save knwang/598ac75cc2d05148ec0b to your computer and use it in GitHub Desktop.
Save knwang/598ac75cc2d05148ec0b to your computer and use it in GitHub Desktop.
require 'rack'
require './extract_data'
surfing_app = Surfing.new
run surfing_app
at_exit do
data = YAML.dump(surfing_app.journal_entries)
File.open("data/journal_entries.yml", 'w') do |file|
file.write(data)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment