From a6d0897cafaa4f6d7bb7b4f257f1a734a638a5d9 Mon Sep 17 00:00:00 2001 From: Jesse Wolgamott Date: Wed, 29 Feb 2012 11:08:53 -0600 Subject: [PATCH] Update with bootstrap-sass 2.0 bump changes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 75295b3..19aee56 100644 --- a/README.md +++ b/README.md @@ -9,14 +9,14 @@ In your gem file, do these things: ``` gem "compass-rails", ">= 0.12" -gem "bootstrap-sass", :git => "git://github.com/thomas-mcdonald/bootstrap-sass.git", :branch => "2.0" +gem "bootstrap-sass", ">= 2.0" ``` In your application.scss import bootstrap using sass, not sprockets. ``` @import "bootstrap"; -@import "bootstrap/responsive"; +@import "bootstrap-responsive"; ``` I wish it were more interesting, but Chris Eppstein made compass drop dead simple to integrate.