Closed (fixed)
Project:
radix
Version:
7.x-3.0-rc1
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
14 Feb 2015 at 00:02 UTC
Updated:
3 May 2015 at 10:24 UTC
Jump to comment: Most recent
Comments
Comment #1
shadcn commentedhmm, css_splitter doesn't have stylesheet. Are you running compass watch using bundler?
bundle exec compass watchComment #2
jenlamptonIn case others suffer from this problem, I wasn't ever able to get
compass watchto work with Radix themes (it works fine with Omega), but when I ranbundle exec compass watchI was able to get a bunch of more useful errors saying that I was missing specific versions of libraries.bundle installinstalled all the missing versions, and got my Radix theme working (and broke Omega). *sigh*Since I don't want to type
bundle exec compass watchI added the following line to my ~/.bash_profile:...so now all I have to do is type
watchComment #3
shadcn commentedYeah Radix requires some specific versions of gems, so we make use of the Gemfile and then run compass through bundler to make it use this specific version of compass.
You can do the same for Omega as well. It ships with its own Gemfile. See http://cgit.drupalcode.org/omega/tree/Gemfile?id=560dc2e09299d36b3496b50...
This way there's no conflict between compass versions used for Radix and Omega.
If you run bundle install for Omega then you can use the same
watchalias created above to compass watch for both Radix and Omega.