comparison bin/setup @ 223:ad6264cca788

Update to rails 7
author nanaya <me@nanaya.pro>
date Sat, 15 Jan 2022 02:39:53 +0900
parents 2335107f35d0
children
comparison
equal deleted inserted replaced
222:fefe9b0a603d 223:ad6264cca788
1 #!/usr/bin/env ruby 1 #!/usr/bin/env ruby
2 require "fileutils" 2 require "fileutils"
3 3
4 # path to your application root. 4 # path to your application root.
5 APP_ROOT = File.expand_path('..', __dir__) 5 APP_ROOT = File.expand_path("..", __dir__)
6 6
7 def system!(*args) 7 def system!(*args)
8 system(*args) || abort("\n== Command #{args} failed ==") 8 system(*args) || abort("\n== Command #{args} failed ==")
9 end 9 end
10 10
11 FileUtils.chdir APP_ROOT do 11 FileUtils.chdir APP_ROOT do
12 # This script is a way to set up or update your development environment automatically. 12 # This script is a way to set up or update your development environment automatically.
13 # This script is idempotent, so that you can run it at any time and get an expectable outcome. 13 # This script is idempotent, so that you can run it at any time and get an expectable outcome.
14 # Add necessary setup steps to this file. 14 # Add necessary setup steps to this file.
15 15
16 puts '== Installing dependencies ==' 16 puts "== Installing dependencies =="
17 system! 'gem install bundler --conservative' 17 system! "gem install bundler --conservative"
18 system('bundle check') || system!('bundle install') 18 system("bundle check") || system!("bundle install")
19 19
20 puts "\n== Removing old logs and tempfiles ==" 20 puts "\n== Removing old logs and tempfiles =="
21 system! 'bin/rails log:clear tmp:clear' 21 system! "bin/rails log:clear tmp:clear"
22 22
23 puts "\n== Restarting application server ==" 23 puts "\n== Restarting application server =="
24 system! 'bin/rails restart' 24 system! "bin/rails restart"
25 end 25 end