To setup Grunt and Bundler on your system, you must run the following block of commands:
npm -g grunt-cli
gem install bundler
gem install rubygems-bundler
gem regenerate_binstubs
Then cd into your repository clone and execute the following commands to install the requirements.
npm install
bundle install
compass compile
Execute grunt
, open http://localhost:8000
in your favorite browser and enjoy 😃
.
├── app
│ ├── coffeescripts
│ │ ├── collections
│ │ ├── models
│ │ └── views
│ ├── images
│ ├── scss
│ └── templates
├── build
│ ├── debug
│ └── production
└── vendor
└── javascripts
├── libs
└── plugins