0

Inside my application.css.scss i have the following code

@import 'bourbon';
@import 'neat';
@import 'neat-helpers';

div.container {
  @include outer-container;
}

however upon starting my rails app (i am using the better-errors gem) i get the following screen

rails-4-screengrab

removing both the @imports works but then i get no css

1 Answers1

0

You are calling the 'environment' method in one of those files. Try removing the line with that call or post it in the comments.

neon
  • 2,811
  • 6
  • 30
  • 44
  • the 'enviroment' call has to be coming from the gem because after removing the `@import bourbon` and `@import neat` this error goes away –  Mar 16 '14 at 04:41
  • Try removing:@charset 'utf-8'; /* *= require zurb--bower-foundation'; *= require bourbon'; *= require neat'; */ – neon Mar 16 '14 at 04:42
  • also remember to restart your server after bundle install – neon Mar 16 '14 at 04:45
  • removing the charset and requires did nothing –  Mar 16 '14 at 04:48
  • after restarting, try removing them one at a time to isolate the source of the error – neon Mar 16 '14 at 13:44