Windows で gulp-ruby-sass を実行しようとしています。
私はすでにRubyとSassをそのようにインストールしています:
$ gem install sass
私の gulp.task は次のようになります。
gulp.task('styles', function() {
return sass('src/scss/**/*.scss')
.on('error', sass.logError)
.pipe(gulp.dest('css'));
});
プロジェクトのルート ディレクトリに移動して を実行する$ gulp styles
と、次のようになります。
[22:54:52] Using gulpfile c:\wamp\www\wordpress\
wp-content\themes\bootscores\gulpfile.js
[22:54:52] Starting 'styles'...
[22:54:52] 'sass' is not recognized as an internal or external command,
operable program or batch file.
Error in plugin 'gulp-ruby-sass'
Message:
Gem undefined is not installed.
[22:54:52] Finished 'styles' after 89 ms
この問題の解決策を約 2 時間探していますが、まだ解決策が見つかりません。