Skip to content

Instantly share code, notes, and snippets.

View rx's full-sized avatar
👾
Bit twiddling

Russell Edens rx

👾
Bit twiddling
View GitHub Profile
rake db:create db:migrate
rails s
rake gem:install
cd jobs
rails g scaffold job account:string name:string description:string command:string run_every:string active:boolean
gem "jeweler"
gem 'voomify-jobs', :require=>"voomify_jobs"
mkdir host/db/migrate
cp jobs/db/migrate/* host/db/migrate
cd ..
railsapp app host
cd host
rake db:create db:migrate
rails s
railsapp engine jobs
rails your_engine_name -T -d postgresql -f -m ~/dev/voomify/templates/engine.rb
railsapp engine your_engine_name
railsapp app your_app_name