Skip to content

Instantly share code, notes, and snippets.

View databus23's full-sized avatar

Fabian Ruff databus23

View GitHub Profile
@BugRoger
BugRoger / inventory.rb
Created August 6, 2014 07:43
ActiveRecord Playground in a Single File
unless File.exist?('Gemfile')
File.write('Gemfile', <<-GEMFILE)
source 'https://rubygems.org'
gem 'rails'
gem 'sqlite3'
GEMFILE
system 'bundle'
end