Skip to content

Instantly share code, notes, and snippets.

@wycleffsean
wycleffsean / gist:cc12c4dbc872bb77fea4a00c33d72fa8
Last active May 28, 2019 21:56 — forked from unnitallman/gist:944011
sqlite with activerecord outside rails
require 'active_record'
ActiveRecord::Base.logger = Logger.new(STDERR)
ActiveRecord::Base.colorize_logging = false
ActiveRecord::Base.establish_connection(
:adapter => "sqlite3",
:dbfile => ":memory:"
)