// For Sass Compass
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Helper function to add IE commented js files. | |
* Offer more placement flexibility than drupal_add_html_head. | |
*/ | |
function _add_ie_js(array $scripts) { | |
$return = ''; | |
foreach ($scripts as $key => $value) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$aliases['remote.dev'] = array ( | |
'uri' => 'example.tld', | |
'remote-user' => 'example', | |
'remote-host' => 'example.tld', | |
'root' => '/example/path/', | |
'path-aliases' => array( | |
'%files' => 'sites/example/files', | |
'%theme' => 'sites/example/themes/example', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
// @see https://github.com/Team-Sass/toolkit/issues/43 | |
@mixin enhance-with($feature) { | |
.#{$feature} & { | |
@content; |
- Install X-code Command Line Tools
- Install Homebrew
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.2.14) | |
// Compass (v0.12.2) | |
// Breakpoint (v2.0.7) | |
// Singularity.gs (v1.1.2) | |
// ---- | |
@import "breakpoint"; | |
@import "singularitygs"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// | |
// A Sass log helper. | |
// | |
@mixin log($args...) { | |
@at-root log { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// A Sass micro-templating function. | |
// ----------------------------------------------------------------------------- | |
// @param [string] $format | |
// @param [arglist | map] $args | |
// ----------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.8) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// | |
// Sass IE filters helper. | |
// | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.4) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// Capitalize string | |
// -------------------------------------------------------------------------------- | |
// @param [string] $string | |
// -------------------------------------------------------------------------------- | |
// @return [string] |