From cdc510e3462c196e7548db199876be014851d170 Mon Sep 17 00:00:00 2001 From: Damian Galarza Date: Fri, 4 Mar 2016 14:23:49 -0500 Subject: [PATCH] Add sass requirement Neat adds it's stylesheets to the Sass load paths however we are not requiring sass explicitly. Previously, Sass was being required implicitly through bourbon however, as of bourbon-5.0 Sass is no longer required in the gem itself resulting in an error within Neat. Resolves https://github.com/thoughtbot/neat/issues/429 --- lib/neat.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/neat.rb b/lib/neat.rb index c94b7742..a3e1ecc1 100644 --- a/lib/neat.rb +++ b/lib/neat.rb @@ -1,3 +1,4 @@ +require "sass" require "bourbon" require "neat/generator"