Class: Bootlace::Base

Inherits:
Object
  • Object
show all
Includes:
Bundler, Logger, OS, Package, Rake
Defined in:
lib/bootlace.rb

Instance Attribute Summary

Attributes included from Package

#noop

Instance Method Summary collapse

Methods included from Bundler

#bundler

Methods included from Logger

#logger

Methods included from Rake

#rake

Methods included from Package

#install_package_from_hash, #install_package_from_string, #noop!, #package

Methods included from OS

#os

Instance Method Details

#railsObject



16
17
18
19
20
21
22
# File 'lib/bootlace.rb', line 16

def rails
  bundler
  rake 'db:create'
  rake 'db:schema:load'
  rake 'db:seed'
  rake 'db:test:prepare'
end