Sha256: 7b3914ba6aaa0ffa1e2aa725e2ec188e7cb84b51fb6335d6ebbd7adbf3ac583c

Contents?: true

Size: 392 Bytes

Versions: 3

Compression:

Stored size: 392 Bytes

Contents

#!/bin/sh

set -e

# Install required gems, including Appraisal, which helps us test against
# multiple Rails versions
gem install bundler --conservative
bundle check || bundle install

if [ -z "$CI" ]; then
  bundle exec appraisal install
fi

# Set up database for the application that Clearance tests against
RAILS_ENV=test bundle exec rake db:drop
RAILS_ENV=test bundle exec rake db:setup

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
clearance-2.9.2 bin/setup
clearance-2.9.1 bin/setup
clearance-2.9.0 bin/setup