about summary refs log tree commit diff stats
path: root/data/maps/the_unkempt/rooms/W2 Room.txtpb
blob: 2fa07d436f95622e2096ca0e7bd75050146a4a5b (plain) (blame)
1
generated by cgit-pink 1.4.1 (git 2.36.1) at 2025-10-07 08:58:51 +0000
 


>File.expand_path('../../', __FILE__)

def system!(*args)
  system(*args) || abort("\n== Command #{args} failed ==")
end

chdir APP_ROOT do
  # This script is a way to update your development environment automatically.
  # Add necessary update steps to this file.

  puts '== Installing dependencies =='
  system! 'gem install bundler --conservative'
  system('bundle check') || system!('bundle install')

  puts "\n== Updating database =="
  system! 'bin/rails db:migrate'

  puts "\n== Removing old logs and tempfiles =="
  system! 'bin/rails log:clear tmp:clear'

  puts "\n== Restarting application server =="
  system! 'bin/rails restart'
end