Created
July 2, 2012 23:05
-
-
Save mhayes/3036269 to your computer and use it in GitHub Desktop.
Rails Compass Gem Installation
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
<!-- | |
Place this in <head></head> | |
Set the viewport width to device width for mobile | |
--> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
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
//= require foundation | |
//= require foundation/app |
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
@import "foundation"; |
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
Bundler could not find compatible versions for gem "sass": | |
In snapshot (Gemfile.lock): | |
sass (3.1.20) | |
In Gemfile: | |
zurb-foundation (~> 3.0.0) ruby depends on | |
sass (= 3.2.0.alpha.244) ruby |
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
group :assets do | |
gem 'sass-rails', '~> 3.2.3' | |
gem 'coffee-rails', '~> 3.2.1' | |
# Add these gems | |
gem 'compass-rails', '~> 1.0.3' | |
gem 'zurb-foundation', '~> 3.0.9' | |
end |
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
/* | |
=require foundation | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment