Using Modules Ruby Gems - mcuyar/station GitHub Wiki

A lot of great productivity gems like SASS/COMPASS for CSS are available with Ruby to enhance your workflow. Ruby-dev and Bundler are installed by default.

To add gems, supply the ruby-gems parameter to your config file with a gems parameter value as an array.

ruby-gems:
  gems:
    - sass
    - compass

If you would like to uninstall Ruby-dev and Bundler, add these parameters to your config file.

ruby-gems:
  install:
    ruby-dev: false
    bundler: false