Created
August 7, 2014 20:23
-
-
Save nhunzaker/6a7c9c61c470a8a6805f to your computer and use it in GitHub Desktop.
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
source 'https://rubygems.org' | |
# Gemfile | |
gem 'sass', '3.3.14' | |
gem 'compass', '~> 1.0.0.rc.1' | |
gem 'sass-globbing', '~> 1.1.1' | |
gem 'sass-json-vars', '~> 0.3.1' | |
gem 'breakpoint-slicer', '~> 1.2' | |
gem 'susy', '~> 2.0.0' | |
gem 'capistrano', '~> 3.2.1' | |
gem 'capistrano-rvm', '~> 0.1.1' | |
gem 'capistrano-bundler', '~> 1.1.2' | |
gem 'hipchat', '~> 1.2.0' |
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
sass test.scss -r sass-json-vars --watch --trace |
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
@import 'vars.json'; | |
body { | |
color: $color; | |
} |
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
{ | |
"color": "red" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment