Sha256: 2a78f8ee05448d5e8202703a0468c4834f7c4709fbc7aab85746b07aaeebd671
Contents?: true
Size: 486 Bytes
Versions: 257
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:-LHS} 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
257 entries across 257 versions & 1 rubygems