diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-24 14:20:22 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-24 14:20:22 -0400 |
commit | 5581530930129d7854ed5d99d058939ad9c790c2 (patch) | |
tree | 157515f64b34a86e0f6d33dc641e06a7ecc2982c /bin/update | |
download | thoughts-5581530930129d7854ed5d99d058939ad9c790c2.tar.gz thoughts-5581530930129d7854ed5d99d058939ad9c790c2.tar.bz2 thoughts-5581530930129d7854ed5d99d058939ad9c790c2.zip |
Initial commit
Diffstat (limited to 'bin/update')
-rwxr-xr-x | bin/update | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/bin/update b/bin/update new file mode 100755 index 0000000..a8e4462 --- /dev/null +++ b/bin/update | |||
@@ -0,0 +1,29 @@ | |||
1 | #!/usr/bin/env ruby | ||
2 | require 'pathname' | ||
3 | require 'fileutils' | ||
4 | include FileUtils | ||
5 | |||
6 | # path to your application root. | ||
7 | APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) | ||
8 | |||
9 | def system!(*args) | ||
10 | system(*args) || abort("\n== Command #{args} failed ==") | ||
11 | end | ||
12 | |||
13 | chdir APP_ROOT do | ||
14 | # This script is a way to update your development environment automatically. | ||
15 | # Add necessary update steps to this file. | ||
16 | |||
17 | puts '== Installing dependencies ==' | ||
18 | system! 'gem install bundler --conservative' | ||
19 | system('bundle check') || system!('bundle install') | ||
20 | |||
21 | puts "\n== Updating database ==" | ||
22 | system! 'bin/rails db:migrate' | ||
23 | |||
24 | puts "\n== Removing old logs and tempfiles ==" | ||
25 | system! 'bin/rails log:clear tmp:clear' | ||
26 | |||
27 | puts "\n== Restarting application server ==" | ||
28 | system! 'bin/rails restart' | ||
29 | end | ||