6 # path to your application root.
7 APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
10 system(*args) || abort("\n== Command #{args} failed ==")
14 # This script is a way to update your development environment automatically.
15 # Add necessary update steps to this file.
17 puts '== Installing dependencies =='
18 system! 'gem install bundler --conservative'
19 system('bundle check') || system!('bundle install')
21 puts "\n== Updating database =="
22 system! 'bin/rails db:migrate'
24 puts "\n== Removing old logs and tempfiles =="
25 system! 'bin/rails log:clear tmp:clear'
27 puts "\n== Restarting application server =="
28 system! 'bin/rails restart'