Created
November 10, 2015 07:08
-
-
Save mkouhei/4067f8a0cee6804bdd48 to your computer and use it in GitHub Desktop.
automate testing in Ruby as like the tox https://testrun.org/tox/latest/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -e | |
if [ -f .ruby-version ]; then | |
RUBY_VER=$(cat .ruby-version) | |
fi | |
test -f /etc/debian_version && PATCH="https://bugs.ruby-lang.org/attachments/download/5479/ruby-sslv3.diff" | |
if [ ! -z $RUBY_VER ]; then | |
if [ x"$(rbenv version | awk '{print $1}')" != x"$RUBY_VER" ]; then | |
if ! rbenv versions | grep -wq "$RUBY_VER"; then | |
if [ -z $PATCH ]; then | |
rbenv install $RUBY_VER | |
else | |
curl -fsSL $PATCH | rbenv install --patch $RUBY_VER | |
fi | |
fi | |
fi | |
rbenv local $RUBY_VER | |
rbenv rehash | |
fi | |
rbenv exec gem list | grep -wq bundler || rbenv exec gem install bundler | |
bundle install --path vendor/bundle | |
bundle exec rake spec | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment