forked from coreinfrastructure/best-practices-badge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update-ruby
executable file
·47 lines (42 loc) · 1.22 KB
/
update-ruby
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/sh
# Update Ruby. If you're initiating this for the project, pass the
# new version as the first parameter - this will update and commit.
# If you're not initiative this for the project, provide no parameters -
# this will update as needed (to the version given in ".ruby-version").
# The following enables some run-time error detection:
set -e
if [ "$1" ] ; then
ruby_version="$1"
else
ruby_version="$(cat .ruby-version)"
fi
# Update ruby-build list
if [ "$(uname)" = 'Darwin' ] ; then
brew update && brew upgrade ruby-build
else
(cd "$HOME"/.rbenv/plugins/ruby-build && git pull)
fi
# Install with ruby-build
rbenv install "$ruby_version"
# Use new Ruby version if you are doing the first
if [ "$1" ]; then
rbenv local "$ruby_version"
fi
# Make sure we're using the current "gem" system
gem update --system
# Tell rbenv about that
rbenv rehash
# Reinstall bundler for it
gem install bundler
# Tell rbenv about bundler
rbenv rehash
# Reinstall gems
bundle install
# Update rbenv commands
rbenv rehash
# Commit with a standard upgrade message then sign and allow message change,
# but only if local tests pass.
if [ "$1" ] && rake; then
git commit -am "Upgrade to ruby $ruby_version"
git commit --amend -s
fi