Sha256: daf9d5831bd4d31371fe39077cdd750e1d3168185bfca9a24db0431df2c12559

Contents?: true

Size: 623 Bytes

Versions: 4

Compression:

Stored size: 623 Bytes

Contents

#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
set -vx

asdf plugin-add ruby || true
asdf install

# Make sure "gem" is available
asdf reshim ruby

# Need specific version of bundler for this ruby version
gem install bundler -v 2.2.19

# Make sure "bundle" is available
asdf reshim ruby

EXPECTED_VERSION="Bundler version 2.2.19"
BUNDLER_VERSION=$(bundle --version)

if [[ "$BUNDLER_VERSION" != "$EXPECTED_VERSION" ]]; then
  echo "Using the wrong bundler version: '$BUNDLER_VERSION'. Expected '$EXPECTED_VERSION'"
  exit 1
fi

bundle install
bundle exec appraisal install
bundle exec rake clean
bundle exec rake compile

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
arel_toolkit-0.4.9 bin/setup
arel_toolkit-0.4.8 bin/setup
arel_toolkit-0.4.7 bin/setup
arel_toolkit-0.4.6 bin/setup