These rules are adopted from the AngularJS commit conventions.
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
# Add these scripts to your .profile or .bash_profile or .zshrc, or wherever you shell-script | |
# (FWIW, I keep core scripts in my .profile, then import .profile into zsh or bash configs) | |
# PURPOSE: | |
# When developing, you want to develop a critical reflex/hygiene: | |
# keeping your working/feature branch updated against your trunk branch. | |
# But this takes time and attention, partly because your working branch can have an arbitrary name to remember/type. | |
# We want to "make the right thing the easy thing." (h/t: Mike Bland) | |
# These convenience scripts turn that process into a one-command operation. |
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
# Install Xcode from the Mac App Store | |
open /Applications/Install\ Xcode.app # complete the installation | |
# Install homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)" | |
# Install RVM | |
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) | |
# Install some libraries to link ruby and gems against |