Skip to content

Instantly share code, notes, and snippets.

@jwsloan
jwsloan / gist:26a3e82b4d3cb3358aaa64d111535bef
Created January 12, 2018 22:32 — 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",
database: ":memory:"
)