Sha256: 39ceff8b370d093200b3c3ed2d7c59869f767e55dcddf045b00e639e7ffc4202

Contents?: true

Size: 602 Bytes

Versions: 11

Compression:

Stored size: 602 Bytes

Contents

#!/usr/bin/env ruby
require 'fileutils'

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

def system!(*args)
  system(*args) || abort("\n== Command #{args} failed ==")
end

FileUtils.chdir APP_ROOT do
  # This script is a way to setup or update your development environment automatically.
  # This script is idempotent, so that you can run it at anytime and get an expectable outcome.
  # Add necessary setup steps to this file.

  puts '== Installing dependencies =='
  system! 'gem install bundler --conservative'
  system('bundle check') || system!('bundle install')
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
log-analyser-0.1.2b bin/setup
log-analyser-0.1.2b.pre.bumpversion.20201107195800 bin/setup
log-analyser-0.1.2 bin/setup
log-analyser-0.1.2.pre.v012b.20201107192223 bin/setup
log-analyser-0.1.1.pre.v012b.20201107192007 bin/setup
log-analyser-0.1.1.pre.v012b.20201107191751 bin/setup
log-analyser-0.1.2.pre.v012.20201107185736 bin/setup
log-analyser-0.1.1 bin/setup
log-analyser-0.1.1.pre.deployment.20201107180229 bin/setup
log-analyser-0.1.1.pre.expandreadme.20201107175459 bin/setup
log-analyser-0.1.1.pre.test.20201106194135 bin/setup