Sha256: a00bc752f82dc543ab6390e58fdcaa54f5c6ba57479ab96f0df58665f0971394

Contents?: true

Size: 919 Bytes

Versions: 42

Compression:

Stored size: 919 Bytes

Contents

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

require 'fileutils'
# rubocop:disable Style/MixinUsage
include FileUtils
# rubocop:enable 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

42 entries across 42 versions & 2 rubygems

Version Path
magicka-0.4.0 spec/dummy/bin/update
magicka-0.3.1 spec/dummy/bin/update
magicka-0.3.0 spec/dummy/bin/update
magicka-0.2.1 spec/dummy/bin/update
magicka-0.2.0 spec/dummy/bin/update
magicka-0.1.0 spec/dummy/bin/update
magicka-0.0.1 spec/dummy/bin/update
azeroth-0.7.1 spec/dummy/bin/update
azeroth-0.7.0 spec/dummy/bin/update
azeroth-0.6.5 spec/dummy/bin/update
azeroth-0.6.4 spec/dummy/bin/update
azeroth-0.6.3 spec/dummy/bin/update
azeroth-0.6.2 spec/dummy/bin/update
azeroth-0.6.1 spec/dummy/bin/update
azeroth-0.6.0 spec/dummy/bin/update
azeroth-0.5.0 spec/dummy/bin/update
azeroth-0.4.0 spec/dummy/bin/update
azeroth-0.3.0 spec/dummy/bin/update
azeroth-0.2.0 spec/dummy/bin/update
azeroth-0.1.0 spec/dummy/bin/update