Sha256: 1d2204f0dfa9ca2b75faf41594942b58c2d2cb7ee9629e73b4979d3a0e0b842b

Contents?: true

Size: 781 Bytes

Versions: 7

Compression:

Stored size: 781 Bytes

Contents

#!/usr/bin/env ruby
require 'pathname'
require 'fileutils'
include FileUtils

# path to your application root.
APP_ROOT = Pathname.new 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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
railman-1.0.6 templates/rails_app/bin/update
railman-1.0.5 templates/rails_app/bin/update
railman-1.0.4 templates/rails_app/bin/update
railman-1.0.3 templates/rails_app/bin/update
railman-1.0.2 templates/rails_app/bin/update
railman-1.0.1 templates/rails_app/bin/update
railman-1.0.0 templates/rails_app/bin/update