Sha256: 955e754919fd79a398cece1fed3796436e8e95107908bf98b89e6dad12e7b62f
Contents?: true
Size: 458 Bytes
Versions: 4
Compression:
Stored size: 458 Bytes
Contents
#!/bin/bash bundle exec rake test ruby_v=$(ruby -v) ACTIVEMODEL_VERSION='3.2' bundle update ACTIVEMODEL_VERSION='3.2' 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
u-case-2.6.0 | .travis.sh |
u-case-2.5.0 | .travis.sh |
u-case-2.4.0 | .travis.sh |
u-case-2.3.1 | .travis.sh |