class Roroacms::InstallGenerator

Public Instance Methods

install() click to toggle source
# File lib/generators/roroacms/install_generator.rb, line 5
def install 
        run 'bundle install'
        route %Q{mount Roroacms::Engine => '/'}
        rake 'db:create'
        rake 'roroacms:install:migrations'
        rake 'db:migrate'
        rake 'roroacms:db:seed'
        rake 'db:seed'
        puts 'You are all setup!'
end