rvm 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +64 -51
- data/binscripts/rvm-auto-ruby +1 -1
- data/binscripts/rvm-shell +1 -1
- data/contrib/install-system-wide +3 -3
- data/help/cleanup +23 -0
- data/help/disk-usage +15 -0
- data/help/docs +22 -0
- data/help/exec +33 -0
- data/help/migrate +15 -0
- data/help/repair +23 -0
- data/help/rubygems +11 -0
- data/help/rvmrc +34 -0
- data/help/snapshot +15 -0
- data/help/tools +22 -0
- data/help/upgrade +18 -0
- data/install +11 -7
- data/lib/VERSION.yml +1 -1
- data/lib/rvm/environment.rb +2 -1
- data/lib/rvm/environment/tools.rb +7 -1
- data/lib/rvm/errors.rb +3 -0
- data/rvm.gemspec +13 -2
- data/scripts/alias +2 -2
- data/scripts/cli +7 -13
- data/scripts/disk-usage +6 -2
- data/scripts/help +6 -6
- data/scripts/info +11 -3
- data/scripts/install +11 -7
- data/scripts/list +4 -3
- data/scripts/log +2 -1
- data/scripts/manage +27 -18
- data/scripts/override_gem +10 -0
- data/scripts/repair +1 -1
- data/scripts/rubygems +1 -1
- data/scripts/rvm +9 -2
- data/scripts/rvm-install +11 -7
- data/scripts/selector +8 -8
- data/scripts/snapshot +3 -3
- data/scripts/tools +8 -3
- data/scripts/update +11 -7
- data/scripts/utility +47 -29
- data/scripts/wrapper +1 -1
- metadata +15 -4
data/scripts/wrapper
CHANGED
@@ -16,7 +16,7 @@ wrap() {
|
|
16
16
|
|
17
17
|
echo "#!/usr/bin/env sh" > "$file_name"
|
18
18
|
echo "if [ -s \"${rvm_environments_path}/${environment_identifier}\" ] ; then" >> "$file_name"
|
19
|
-
echo "
|
19
|
+
echo " \\. \"${rvm_environments_path}/${environment_identifier}\"" >> "$file_name"
|
20
20
|
echo " exec $binary_name \"\$@\"" >> "$file_name"
|
21
21
|
echo "else" >> $file_name
|
22
22
|
echo " echo \"ERROR: Missing RVM environment file: '${rvm_environments_path}/${environment_identifier}'\"" >> $file_name
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rvm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Wayne E. Seguin
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-08-
|
18
|
+
date: 2010-08-27 00:00:00 -04:00
|
19
19
|
default_executable: rvm-install
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -47,7 +47,11 @@ files:
|
|
47
47
|
- gemsets/global.gems
|
48
48
|
- help/alias
|
49
49
|
- help/benchmark
|
50
|
+
- help/cleanup
|
50
51
|
- help/debug
|
52
|
+
- help/disk-usage
|
53
|
+
- help/docs
|
54
|
+
- help/exec
|
51
55
|
- help/fetch
|
52
56
|
- help/gem
|
53
57
|
- help/gemdir
|
@@ -56,19 +60,25 @@ files:
|
|
56
60
|
- help/info
|
57
61
|
- help/install
|
58
62
|
- help/list
|
63
|
+
- help/migrate
|
59
64
|
- help/monitor
|
60
65
|
- help/notes
|
61
66
|
- help/package
|
62
67
|
- help/rake
|
63
68
|
- help/remove
|
69
|
+
- help/repair
|
64
70
|
- help/reset
|
65
71
|
- help/ruby
|
72
|
+
- help/rubygems
|
66
73
|
- help/rvmrc
|
74
|
+
- help/snapshot
|
67
75
|
- help/specs
|
68
76
|
- help/srcdir
|
69
77
|
- help/tests
|
78
|
+
- help/tools
|
70
79
|
- help/uninstall
|
71
80
|
- help/update
|
81
|
+
- help/upgrade
|
72
82
|
- help/use
|
73
83
|
- help/wrapper
|
74
84
|
- install
|
@@ -133,6 +143,7 @@ files:
|
|
133
143
|
- scripts/migrate
|
134
144
|
- scripts/monitor
|
135
145
|
- scripts/notes
|
146
|
+
- scripts/override_gem
|
136
147
|
- scripts/package
|
137
148
|
- scripts/patches
|
138
149
|
- scripts/patchsets
|