File: bundle_install_all_ruby_versions.sh

package info (click to toggle)
ruby-safe-yaml 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 344 kB
  • ctags: 163
  • sloc: ruby: 1,997; sh: 30; makefile: 7
file content (21 lines) | stat: -rwxr-xr-x 261 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"

rvm use 1.8.7
bundle install

rvm use 1.9.2
bundle install

rvm use 1.9.3
bundle install

rvm use 2.0.0
bundle install

rvm use ruby-head
bundle install

rvm use jruby
bundle install