forked from rvm/rvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupgrade
executable file
·148 lines (118 loc) · 3.33 KB
/
upgrade
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/usr/bin/env bash
unset GREP_OPTIONS
usage()
{
printf "%b" "
Usage:
rvm upgrade {source-ruby} [destination-ruby] [--force]
Description:
Upgrades the specified (already installed) source ruby given to the
given destination ruby version. Will migrate gemsets, wrappers, aliases
and environment files.
To upgrade rvm itself you want 'rvm get'.
Examples:
$ rvm upgrade 1.9.2-p136 1.9.2-p180
$ rvm upgrade ree-2011.01 ree-2011-02
"
}
confirm()
{
if (( ${rvm_force_flag:-0} > 0 ))
then return 0
fi
\typeset confirmation_response
printf "%b" "$1 (Y/n): "
read -r confirmation_response
if [[ -n "$confirmation_response" ]]
then
echo $confirmation_response | __rvm_grep -i '^y\|^Y' >/dev/null 2>&1
fi
}
die_with_error()
{
rvm_error "$1"
exit "${2:-1}"
}
expand_ruby_name()
(
source "$rvm_scripts_path/functions/tools"
tools_strings "${1%%@*}"
)
existing_ruby_patch()
{
{
__rvm_list_strings | __rvm_grep -E "^ruby-$1|^$1$" ||
(
rvm_ruby_string="$1"
__rvm_ruby_string
__rvm_list_strings | __rvm_grep -E "^${rvm_ruby_interpreter}-${rvm_ruby_version}(-.*|$)" ||
__rvm_list_strings | __rvm_grep "^${rvm_ruby_interpreter}-"
)
} | __rvm_version_sort | __rvm_tail -n 1
}
highest_ruby_patch()
{
\typeset patch_level _version
(
rvm_ruby_string=$1
__rvm_ruby_string
patch_level="$(
__rvm_db "${rvm_ruby_interpreter}_${rvm_ruby_version}_patch_level"
)"
_version="$(
__rvm_db "${rvm_ruby_interpreter}_version"
)"
if
[[ -n "${patch_level:-""}" ]]
then
rvm_ruby_patch_level="${patch_level}"
echo ${rvm_ruby_interpreter}-${rvm_ruby_version}-${rvm_ruby_patch_level}
elif
[[ -n "${_version:-""}" ]]
then
echo ${rvm_ruby_interpreter}-${_version}
else
echo ${rvm_ruby_interpreter}
fi
)
}
upgrade_ruby()
{
[[ -n "$expanded_source" ]] || die_with_error "The source ruby was not a valid ruby string."
[[ -n "$expanded_destination" ]] || die_with_error "The destination ruby was not a valid ruby string."
confirm "Are you sure you wish to upgrade from $expanded_source to $expanded_destination?" ||
die_with_error "Cancelling upgrade."
[[ -d "$rvm_rubies_path/$expanded_destination" ]] ||
{
rvm_log "Installing new ruby $expanded_destination"
__rvm_run_wrapper manage install "$expanded_destination" ||
die_with_error "Unable to install ruby $expanded_destination. Please install it manually to continue." $?
}
rvm_log "Migrating gems from $expanded_source to $expanded_destination"
"$rvm_scripts_path/migrate" "$expanded_source" "$expanded_destination" || die_with_error "Error migrating gems." "$result"
rvm_log "Upgrade complete!"
}
source_ruby="${args[__array_start]:-}"
destination_ruby="${args[__array_start+1]:-}"
expanded_source="$(existing_ruby_patch "$source_ruby")"
if
[[ -n "$source_ruby" && -z "$destination_ruby" ]]
then
highest_source="$(highest_ruby_patch "$(expand_ruby_name "$source_ruby")")"
if [[ "${expanded_source}" != "${highest_source}" ]]
then destination_ruby="$(expand_ruby_name "$highest_source")"
fi
fi
if
[[ -z "$source_ruby" || -z "$destination_ruby" ]]
then
usage >&2
exit 1
elif
[[ "help" == "$source_ruby" ]]
then
usage
else
expanded_destination="$(expand_ruby_name "$destination_ruby")"
upgrade_ruby
fi