Created
December 3, 2012 03:10
-
-
Save jjwanat/4192389 to your computer and use it in GitHub Desktop.
OSX Lion Step Re-write
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
step "Install Homebrew" do | |
console "which git" | |
result "/usr/bin/git" | |
message "If you get the result above skip to: <a href='install_rvm_and_ruby'>Install RVM</a>" | |
link "install_homebrew" | |
end | |
step "Install Git" do | |
message "Next we'll install Git, the most popular version control system in the Ruby world:" | |
console "brew install git" | |
verify do | |
console "git --version" | |
result "git version 1.7.7.5" | |
end | |
link "configure_git" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
step "Install Homebrew" do | |
link "install_homebrew" | |
message "Now that HomeBrew is installed, check to see if git is installed." | |
console "which git" | |
result "/usr/bin/git" | |
message "If you get the result above skip to: <a href='configure_git'>Configure Git</a>" | |
end | |
step "Install Git" do | |
message "Next we'll install Git, the most popular version control system in the Ruby world:" | |
console "brew install git" | |
verify do | |
console "git --version" | |
result "git version 1.7.7.5" | |
end | |
message "Now we can configure Git:" | |
link "configure_git" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment