public function CompassFilter::__construct

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Filter/CompassFilter.php, line 55

Class

CompassFilter
Loads Compass files.

Namespace

Assetic\Filter

Code

public function __construct($compassPath = '/usr/bin/compass', $rubyPath = null) {
  $this->compassPath = $compassPath;
  $this->rubyPath = $rubyPath;
  $this->cacheLocation = sys_get_temp_dir();
  if ('cli' !== php_sapi_name()) {
    $this->boring = true;
  }
}