예제 #1
0
 public function __construct($gemPath, $rubyPath = null, $debug = null, $encoding = null)
 {
     $this->gemPath = $gemPath;
     $this->debug = $debug;
     $this->encoding = $encoding;
     parent::__construct($gemPath . '/bin/sass', $rubyPath);
 }
예제 #2
0
 public function __construct($sassPath = '/usr/bin/sass')
 {
     parent::__construct($sassPath);
     $this->setScss(true);
 }
예제 #3
0
 /**
  * Create a new LessFilter instance.
  *
  * @param AssetParser $parser
  */
 public function __construct(AssetParser $parser)
 {
     $this->parser = $parser;
     parent::__construct(env('SASS_PATH', '/usr/bin/sass'), null);
 }