Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

gulp-ruby-sass: 'bundle' is not recognized as an internal or external command, operable program or batch file

Tags:

css

sass

ruby

I am trying to run gulp-ruby-sass on windows.

I am getting the following error:

gulp-ruby-sass: 'bundle' is not recognized as an internal or external command, operable program or batch file.

  • I have successfully installed ruby on my c:\ drive (c:\Ruby193)

  • I have also installed SaSS as

gem install sass

(executed from here c:\Ruby193)

  • I have also set the path to register c:\ruby193 in windows

  • I am running my gulp from c:\project\transformer\ as gulp

I am still getting this error:

gulp-ruby-sass: 'bundle' is not recognized as an internal or external command, operable program or batch file.

Can you please help on solving this matter?

like image 630
codebased Avatar asked Oct 16 '14 08:10

codebased


1 Answers

You need to install bundler gem using the following command to make bundle command work on your system:

gem install bundler
like image 65
Surya Avatar answered Nov 15 '22 05:11

Surya