Skip to content

Instantly share code, notes, and snippets.

@tardate
tardate / rtext.rb
Created January 3, 2012 09:02 — forked from sausheong/rtext.rb
Random text generator app. Missing the dictionary file as well as the index.html file.
require 'sinatra'
DICTIONARY = File.open("dictionary.txt", 'r').readlines
$books = {}
$bookwords = {}
text_names = %w(holmes1 barsoom1 crusoe)
text_names.each do |name|
$books[name.to_sym] = File.open("#{name}.txt", 'r').readlines.join(" ").split.join(" ").split(". ")
$bookwords[name.to_sym] = File.open("#{name}.txt", 'r').read.downcase.split(/\W+/).uniq