-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compatibility with Sass 3.4 and SilverStripe 3.2/3.3 #19
base: master
Are you sure you want to change the base?
Conversation
'latest' as default, new option '3.4' for the latest 3.x version – maybe rename '3' to '3.2'? Users can change to alternative version in mystic/_config.php by e.g.: Compass::$sass_version = '3.4';
nicer web view of dev/compass/rebuild by adding some <br>s skip silverstripe cms and framework for faster compiling – usually you never change silverstripe core files, if you're working on own web project
how to choose required Sass version in projects _config.php
By analyzing the blame information on this pull request, we identified @helpfulrobot, @wilr and @hafriedlander to be potential reviewers |
@@ -290,15 +301,15 @@ public function rebuild($verbose = false) | |||
$this->rebuildDirectory($dir); | |||
} else { | |||
if ($verbose) { | |||
echo "\nRebuilding all\n"; | |||
echo "\nRebuilding all<br>\n"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add these HTML tags is probably a bad idea and scope creep of this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I also thought this is a bad idea. But if you rebuild in browser by dev/compass/rebuild you get all the messages in one line
I'll take it out and that "module skipping" below und make a new Pull.
Thanks for the feedback. If you just amend the current branch this PR will update automatically.
and remove the commits you don't need, then |
By this changes we can use Compass module on latest SilverStripe versions and Ubuntu 14.04 (with ruby-dev installed)