Sha256: 8795fcdd079e938f67926884056d8ff09fd24e11afcbef07636c7f6986e8ad3c

Contents?: true

Size: 849 Bytes

Versions: 12

Compression:

Stored size: 849 Bytes

Contents

PROJECT_RUBY="ree-1.8.7-2011.03"
PROJECT_GEMSET="projectdx_pipeline"

# use the global gemset in order to check for and install bundler, since we
# don't need it to be different for different projects
rvm use $PROJECT_RUBY@global --create --install

echo -n "Checking if bundler gem is installed... "
if `ruby -rubygems -e "gem 'bundler'" &>/dev/null`; then
  echo "Yup, good to go."
else
  echo "Nope. Doing that now."
  gem install bundler
fi

# now use the gemset for this project and check the bundle
rvm use $PROJECT_RUBY@$PROJECT_GEMSET --create
bundle check

# Tweak GC configuration settings for Ruby Enterprise Edition; these make the tests run faster.
export RUBY_HEAP_MIN_SLOTS=1000000
export RUBY_HEAP_SLOTS_INCREMENT=1000000
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
export RUBY_GC_MALLOC_LIMIT=1000000000
export RUBY_HEAP_FREE_MIN=500000

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
projectdx_pipeline-1.3.6 .rvmrc
projectdx_pipeline-1.3.5 .rvmrc
projectdx_pipeline-1.3.4 .rvmrc
projectdx_pipeline-1.3.0 .rvmrc
projectdx_pipeline-1.2.2 .rvmrc
projectdx_pipeline-1.2.1 .rvmrc
projectdx_pipeline-1.2.0 .rvmrc
projectdx_pipeline-1.1.0 .rvmrc
projectdx_pipeline-1.0.0 .rvmrc
projectdx_pipeline-0.2.0 .rvmrc
projectdx_pipeline-0.1.0 .rvmrc
projectdx_pipeline-0.0.1 .rvmrc