Sha256: 7dfff668ea2cab5995bd8402e9c3a67a4bdf60b39b643363d3c37fa39b3e1060

Contents?: true

Size: 884 Bytes

Versions: 9

Compression:

Stored size: 884 Bytes

Contents

#!/bin/bash

bundle exec rake test

ACTIVEMODEL_VERSION='3.2' bundle update
ACTIVEMODEL_VERSION='3.2' bundle exec rake test

ACTIVEMODEL_VERSION='4.0' bundle update
ACTIVEMODEL_VERSION='4.0' bundle exec rake test

ACTIVEMODEL_VERSION='4.1' bundle update
ACTIVEMODEL_VERSION='4.1' bundle exec rake test

ACTIVEMODEL_VERSION='4.2' bundle update
ACTIVEMODEL_VERSION='4.2' bundle exec rake test

ACTIVEMODEL_VERSION='5.0' bundle update
ACTIVEMODEL_VERSION='5.0' bundle exec rake test

ACTIVEMODEL_VERSION='5.1' bundle update
ACTIVEMODEL_VERSION='5.1' bundle exec rake test

if [[ ! $ruby_v =~ '2.2.0' ]]; then
  ACTIVEMODEL_VERSION='5.2' bundle update
  ACTIVEMODEL_VERSION='5.2' bundle exec rake test
fi

if [[ $ruby_v =~ '2.5.' ]] || [[ $ruby_v =~ '2.6.' ]] || [[ $ruby_v =~ '2.7.' ]]; then
  ACTIVEMODEL_VERSION='6.0' bundle update
  ACTIVEMODEL_VERSION='6.0' bundle exec rake test
fi

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
u-attributes-2.6.0 .travis.sh
u-attributes-2.5.0 .travis.sh
u-attributes-2.4.0 .travis.sh
u-attributes-2.3.0 .travis.sh
u-attributes-2.2.0 .travis.sh
u-attributes-2.1.1 .travis.sh
u-attributes-2.1.0 .travis.sh
u-attributes-2.0.1 .travis.sh
u-attributes-2.0.0 .travis.sh