This file contains 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
# 2011-06-30 | |
# | |
# Mac OS X 10.6.8 | |
# Homebrew 0.8 | |
# Xcode 4.0.2 | |
# Git 1.7.6 | |
# RVM 1.6.20 | |
# Ruby 1.9.2 | |
# Rails 3.0.9 | |
# Passenger 3.0.7 |
This file contains 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
# | |
# Set up Ruby on Rails on Ubuntu 10.04 LTS Lucid | |
# | |
# First use Slicehost articles to set up secure Slice and backup | |
http://articles.slicehost.com/2010/4/30/ubuntu-lucid-setup-part-1 | |
http://articles.slicehost.com/2010/10/18/ubuntu-maverick-setup-part-2 | |
# RVM dependencies |
This file contains 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 Homebrew | |
ruby <(curl -fsSk https://raw.github.com/mxcl/homebrew/go) | |
# Follow on-screen instructions (X11 isn't necessary for this if it shows as not installed) | |
brew install node | |
# Open .bashrc and add this line (create .bashrc if its not in your home directory already) |
This file contains 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
python -m SimpleHTTPServer |
This file contains 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
# | |
# From a fresh install of Mountain Lion and XCode | |
# | |
# Set /usr/local folder to current user ownership, not root | |
sudo chown -R `whoami` /usr/local | |
# Install Homebrew - follow instructions given by script |
This file contains 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 RVM and up-to-date Ruby | |
# | |
# Follows on from installing Homebrew (https://gist.github.com/4306392) | |
# Install RVM and latest stable ruby | |
\curl -L https://get.rvm.io | bash -s stable --ruby | |
# Follow on screen instructions carefully |
This file contains 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 Jekyll | |
# | |
# Follows on from Install RVM and up-to-date Ruby (https://gist.github.com/4306452) | |
# As my build stands I need to make a symbolic link to gcc | |
sudo ln -s /usr/bin/llvm-gcc-4.2 /usr/bin/gcc-4.2 | |
# Then it should just be a matter of running... |
This file contains 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
{ | |
// Sets the colors used within the text area | |
"color_scheme": "Packages/Color Scheme - Default/Blackboard.tmTheme", | |
// Note that the font_face and font_size are overriden in the platform | |
// specific settings file, for example, "Preferences (Linux).sublime-settings". | |
// Because of this, setting them here will have no effect: you must set them | |
// in your User File Preferences. | |
"font_face": "Anonymous Pro", | |
"font_size": 17, |