Getting Compass and Susy to work together under Gulp - frustrating.
I can't seem to get Susy 2 working with gulp and compass unless I import the files manually (using the "Manual Start" directions from the Susy documentation).
(I've asked once before, but wasn't able to find any relevant information... this is an ongoing issue for me across multiple development environments, so I'm asking again with as much background information as possible...)
Trying to import susy through compass using the simple install or bundler install fails for me every time, as follows:
Gemfile
source 'https://rubygems.org'
gem 'compass'
gem 'sass'
gem 'breakpoint'
gem 'susy'
bundle install
and: bundle list
Gems included by the bundle:
* breakpoint (2.5.0)
* bundler (1.7.2)
* chunky_png (1.3.1)
* compass (1.0.1)
* compass-core (1.0.1)
* compass-import-once (1.0.5)
* ffi (1.9.3)
* multi_json (1.10.1)
* rb-fsevent (0.9.4)
* rb-inotify (0.9.5)
* sass (3.4.3)
* sassy-maps (0.4.0)
* susy (2.1.3)
config.rb
# Require any additional compass plugins here.
require 'breakpoint'
require 'susy'
Style.scss
@import 'susy';
Results In:
error sass/style.scss (Line 2: File to import not found or unreadable: susy.
Load paths:
...
Compilation failed in 1 files.
events.js:72
throw er; // Unhandled 'error' event
^
Error: error sass/style.scss (Line 2: File to import not found or unreadable: susy.
Load paths:
...
Notably- the "Load Paths" seem to be missing the susy dir. For instance, I can see the path for other gems, such as breakpoint: /usr/local/lib/ruby/gems/2.1.0/gems/breakpoint-2.5.0/stylesheets
Yet the "susy" gem path doesn't display there ("bundle show susy" points to:) /usr/local/lib/ruby/gems/2.1.0/gems/susy-2.1.3
Am I doing something wrong or missing a step?