Sha256: 1814ca2b0104fd3f72924dfe2cecc888be1e48906da2830cbbfc075fb1d805e6
Contents?: true
Size: 486 Bytes
Versions: 12
Compression:
Stored size: 486 Bytes
Contents
#!/bin/bash -e # custom vars # RUBY = ruby-1.9.3-p125 # GEMSET = location-app-${GitHub pull request id|branch name} # standard vars if [ -z "$SKIP_RVM" ]; then [[ -s "/usr/local/rvm/scripts/rvm" ]] && . "/usr/local/rvm/scripts/rvm" RUBY=${RUBY:-ruby-2.1.2} GEMSET=${GEMSET:-DHS} rvm use ${RUBY}@${GEMSET} --create gem install bundler --no-rdoc --no-ri fi bundle install --local || bundle install RAILS_ENV=test bundle exec rspec rvm --force gemset delete ${RUBY}@${GEMSET}
Version data entries
12 entries across 12 versions & 1 rubygems