File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ echo "Installs Homebrew for installing other software"
4
4
/usr/bin/ruby -e " $( /usr/bin/curl -fksSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb) "
5
5
brew update
6
6
7
+ echo " Installs Git"
8
+ brew install git
9
+
7
10
echo " Installs RVM (Ruby Version Manager) for handling Ruby installation"
8
11
curl -kL get.rvm.io | bash -s stable
9
12
source ~ /.rvm/scripts/rvm
@@ -20,6 +23,8 @@ echo -e "Now we are going to print some information to check that everything is
20
23
21
24
echo -n " Should be brew 0.8 or higher: brew "
22
25
brew -v
26
+ echo -n " Should be git 1.7.7 or higher: "
27
+ git --version
23
28
echo -n " Should be sqlite 3.7.3 or higher: sqlite "
24
29
sqlite3 --version
25
30
echo -n " Should be rvm 1.6.32 or higher: "
@@ -30,8 +35,8 @@ echo -n "Should be Rails 3.2.2 or higher: "
30
35
rails -v
31
36
echo -e " \n- - - - - -\n"
32
37
33
- echo " If the versions match, everything is installed correctly. If the versions
34
- don't match or errors are shown, something went wrong with the automated process
38
+ echo " If the versions match, everything is installed correctly. If the versions
39
+ don't match or errors are shown, something went wrong with the automated process
35
40
and we will help you do the installation the manual way at the event.
36
41
37
42
Congrats!"
You can’t perform that action at this time.
0 commit comments