File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,17 @@ sudo apt-get install imagemagick --fix-missing -y
11
11
12
12
echo " Installs RVM (Ruby Version Manager) for handling Ruby installation"
13
13
curl -L get.rvm.io | bash -s stable
14
- echo "
15
- # RVM
16
- [[ -s '/Users/` whoami` /.rvm/scripts/rvm' ]] && source '/Users/` whoami` /.rvm/scripts/rvm'" >> ~ /.bash_profile
17
- source ~ /.bash_profile
14
+ # RVM integration with bash in OSX is like
15
+ # echo "
16
+ # [[ -s '/Users/`whoami`/.rvm/scripts/rvm' ]] && source '/Users/`whoami`/.rvm/scripts/rvm'" >> ~/.bash_profile
17
+ # source ~/.bash_profile
18
+
19
+ # RVM integration with bash in Ubuntu is like
20
+ # echo "
21
+ # [[ -s '$HOME/.rvm/scripts/rvm' ]] && source '$HOME/.rvm/scripts/rvm'" >> ~/.bashrc
22
+ # But is done automagically by rvm itself
23
+
24
+ source ~ /.bashrc
18
25
19
26
echo " Installs Ruby"
20
27
rvm install 1.9.3-p125
@@ -29,8 +36,10 @@ sudo apt-get install gedit -y
29
36
echo -e " \n- - - - - -\n"
30
37
echo -e " Now we are going to print some information to check that everything is done:\n"
31
38
32
- echo -n " Should be brew 0.8 or higher: brew "
33
- brew -v
39
+ # brew in ubuntu?
40
+ # echo -n "Should be brew 0.8 or higher: brew "
41
+ # brew -v
42
+
34
43
echo -n " Should be sqlite 3.7.3 or higher: sqlite "
35
44
sqlite3 --version
36
45
echo -n " Should be rvm 1.6.32 or higher: "
You can’t perform that action at this time.
0 commit comments