NRuby
31 строка · 819.0 Байт
1#!/usr/bin/env ruby
2require 'fileutils'
3include FileUtils
4
5# path to your application root.
6APP_ROOT = File.expand_path('..', __dir__)
7
8def system!(*args)
9system(*args) || abort("\n== Command #{args} failed ==")
10end
11
12chdir APP_ROOT do
13# This script is a way to update your development environment automatically.
14# Add necessary update steps to this file.
15
16puts '== Installing dependencies =='
17system! 'gem install bundler --conservative'
18system('bundle check') || system!('bundle install')
19
20# Install JavaScript dependencies if using Yarn
21# system('bin/yarn')
22
23puts "\n== Updating database =="
24system! 'bin/rails db:migrate'
25
26puts "\n== Removing old logs and tempfiles =="
27system! 'bin/rails log:clear tmp:clear'
28
29puts "\n== Restarting application server =="
30system! 'bin/rails restart'
31end
32