Skip to content

Instantly share code, notes, and snippets.

@indefinit
Last active August 29, 2015 14:04
Show Gist options
  • Save indefinit/90562befbccc4d60cd1e to your computer and use it in GitHub Desktop.
Save indefinit/90562befbccc4d60cd1e to your computer and use it in GitHub Desktop.
Until I have time to refactor this into a bash script, here are the steps for setting up compass+susy+breakpoint

Dependencies:

  • bundler (gem install bundler)
  • susy (gem install susy)
  • breakpoint (gem install breakpoint)
  • compass (gem install compass --pre)
  • ruby vers: 2.0.*

$: bundle init #creates boilerplate Gemfile ...

inside Gemfile, add the folowing lines:

gem "breakpoint", "~>2.4.0"
gem "susy"
gem "compass", "1.0.0.alpha.21"
    

$: bundle install $: compass create --using susy <project name>

...

inside config.rb, add the following lines:

require 'breakpoint'
require 'susy'

... include away!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment