Sha256: 6400fbec19074bd62a7716c4017427885ab0fd75ca30830a5ece609f0e7bc0a3
Contents?: true
Size: 569 Bytes
Versions: 17
Compression:
Stored size: 569 Bytes
Contents
$debug = false def log(*args) STDERR.print args.map(&:to_s).join(' ') + "\n" STDERR.flush end module Ebooks GEM_PATH = File.expand_path(File.join(File.dirname(__FILE__), '..')) DATA_PATH = File.join(GEM_PATH, 'data') SKELETON_PATH = File.join(GEM_PATH, 'skeleton') TEST_PATH = File.join(GEM_PATH, 'test') TEST_CORPUS_PATH = File.join(TEST_PATH, 'corpus/0xabad1dea.tweets') INTERIM = :interim end require 'twitter_ebooks/nlp' require 'twitter_ebooks/archive' require 'twitter_ebooks/suffix' require 'twitter_ebooks/model' require 'twitter_ebooks/bot'
Version data entries
17 entries across 17 versions & 1 rubygems