Sha256: e7e7937155c5817bef5a36150f6a4838fc96225867823ab3e85c15c3f4216a2c
Contents?: true
Size: 1.86 KB
Versions: 1
Compression:
Stored size: 1.86 KB
Contents
#!/bin/bash ruby_v=$(ruby -v) if [[ $ruby_v =~ '2.2.' ]] || [[ $ruby_v =~ '2.3.' ]]; then ACTIVERECORD_VERSION='3.2' bundle update ACTIVERECORD_VERSION='3.2' ENABLE_TRANSITIONS='true' bundle exec rake test ACTIVERECORD_VERSION='3.2' ENABLE_TRANSITIONS='false' bundle exec rake test ACTIVERECORD_VERSION='4.0' bundle update ACTIVERECORD_VERSION='4.0' ENABLE_TRANSITIONS='true' bundle exec rake test ACTIVERECORD_VERSION='4.0' ENABLE_TRANSITIONS='false' bundle exec rake test ACTIVERECORD_VERSION='4.1' bundle update ACTIVERECORD_VERSION='4.1' ENABLE_TRANSITIONS='true' bundle exec rake test ACTIVERECORD_VERSION='4.1' ENABLE_TRANSITIONS='false' bundle exec rake test fi ACTIVERECORD_VERSION='4.2' bundle update ACTIVERECORD_VERSION='4.2' ENABLE_TRANSITIONS='true' bundle exec rake test ACTIVERECORD_VERSION='4.2' ENABLE_TRANSITIONS='false' bundle exec rake test ACTIVERECORD_VERSION='5.0' bundle update ACTIVERECORD_VERSION='5.0' ENABLE_TRANSITIONS='true' bundle exec rake test ACTIVERECORD_VERSION='5.0' ENABLE_TRANSITIONS='false' bundle exec rake test ACTIVERECORD_VERSION='5.1' bundle update ACTIVERECORD_VERSION='5.1' ENABLE_TRANSITIONS='true' bundle exec rake test ACTIVERECORD_VERSION='5.1' ENABLE_TRANSITIONS='false' bundle exec rake test if [[ ! $ruby_v =~ '2.2.0' ]]; then ACTIVERECORD_VERSION='5.2' bundle update ACTIVERECORD_VERSION='5.2' ENABLE_TRANSITIONS='true' bundle exec rake test ACTIVERECORD_VERSION='5.2' ENABLE_TRANSITIONS='false' bundle exec rake test fi if [[ $ruby_v =~ '2.5.' ]] || [[ $ruby_v =~ '2.6.' ]] || [[ $ruby_v =~ '2.7.' ]]; then ACTIVERECORD_VERSION='6.0' bundle update ACTIVERECORD_VERSION='6.0' ENABLE_TRANSITIONS='true' bundle exec rake test ACTIVERECORD_VERSION='6.0' ENABLE_TRANSITIONS='false' bundle exec rake test fi bundle update ENABLE_TRANSITIONS='true' bundle exec rake test ENABLE_TRANSITIONS='false' bundle exec rake test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
u-case-4.2.2 | .travis.sh |