-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRVMUSAGE
More file actions
61 lines (28 loc) · 881 Bytes
/
RVMUSAGE
File metadata and controls
61 lines (28 loc) · 881 Bytes
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
As I no longer require jruby, I don't use rvm or bash
bash-3.2$ rvm list
rvm rubies
=> jruby-1.5.1 [ x86_64-java ]
bash-3.2$ rvm install ruby-1.8.7
....
bash-3.2$ rvm list
rvm rubies
=> jruby-1.5.1 [ x86_64-java ]
ruby-1.8.7-p352 [ x86_64 ]
bash-3.2$ rvm use ruby-1.8.7
Using /Users/jakewendt/.rvm/gems/ruby-1.8.7-p352
bash-3.2$ rvm list
rvm rubies
jruby-1.5.1 [ x86_64-java ]
=> ruby-1.8.7-p352 [ x86_64 ]
bash-3.2$ gem install bundler
Fetching: bundler-1.1.3.gem (100%)
Successfully installed bundler-1.1.3
1 gem installed
bash-3.2$ bundle install
MAY WANT TO DOWNGRADE TO RUBYGEMS 1.6.2 when using rails 2.3.*
Otherwise there will be lots of deprecation warnings.
Tried ...
gem pristine --all --no-extensions
... but still get the pesky deprecation warnings.
Downgrading rubygems to 1.6.2 worked a treat though.
gem update --system 1.6.2