Sha256: 92fc3110974f8184547cb92d6af48598a6ac54c29c788deb608795f2c515ca34

Contents?: true

Size: 885 Bytes

Versions: 16

Compression:

Stored size: 885 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

require 'fileutils'
include FileUtils # rubocop:disable Style/MixinUsage

# path to your application root.
APP_ROOT = File.expand_path('..', __dir__)

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')

  # Install JavaScript dependencies if using Yarn
  # system('bin/yarn')

  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

16 entries across 16 versions & 1 rubygems

Version Path
lcms-engine-0.5.5 spec/dummy/bin/update
lcms-engine-0.5.4 spec/dummy/bin/update
lcms-engine-0.5.3 spec/dummy/bin/update
lcms-engine-0.5.2 spec/dummy/bin/update
lcms-engine-0.5.1 spec/dummy/bin/update
lcms-engine-0.5.0 spec/dummy/bin/update
lcms-engine-0.4.2 spec/dummy/bin/update
lcms-engine-0.4.1 spec/dummy/bin/update
lcms-engine-0.4.0 spec/dummy/bin/update
lcms-engine-0.3.1 spec/dummy/bin/update
lcms-engine-0.1.4 spec/dummy/bin/update
lcms-engine-0.3.0 spec/dummy/bin/update
lcms-engine-0.1.3 spec/dummy/bin/update
lcms-engine-0.2.0 spec/dummy/bin/update
lcms-engine-0.1.2 spec/dummy/bin/update
lcms-engine-0.1.0 spec/dummy/bin/update