Skip to content

Instantly share code, notes, and snippets.

@mhayes
Created October 16, 2012 15:04
Show Gist options
  • Save mhayes/3899827 to your computer and use it in GitHub Desktop.
Save mhayes/3899827 to your computer and use it in GitHub Desktop.
Setting up Foundation Compass Project using Git
1. Setup a Foundation project folder
mkdir ~/awesomeapp
2. Now create a Gemfile using the content listed below
touch ~/awesomeapp/Gemfile
3. Change into the your application directory and create a new project using Bundler (which will use the Git version of Foundation)
cd ~/awesomeapp
bundle exec compass create . -r zurb-foundation --using foundation
4. Now when you're working on your project use the following command
bundle exec compass watch
source :rubygems
gem "zurb-foundation", :git => "git@github.com:zurb/foundation.git"
gem "compass"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment