Skip to content

Instantly share code, notes, and snippets.

@jjwanat
Created December 3, 2012 03:10
Show Gist options
  • Save jjwanat/4192389 to your computer and use it in GitHub Desktop.
Save jjwanat/4192389 to your computer and use it in GitHub Desktop.
OSX Lion Step Re-write
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
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