I\'m new to Middleman and ruby in general.
I\'ve installed Ruby I\'ve installed Middleman and the gems to get it running.
I need to use slim instead of the defau
The middleman-slim project by yterajima is helpful in this regard.
Install is very easy.
$ gem install middleman
$ gem install middleman-slim
$ middleman init PROJECT_NAME --template slim
Bundler tip: you can also include multiple gems at once using Bundler.require
. If you have gems in groups, you can include them as such: Bundler.require :group1, :group2 ...
So here we go... after much reading and searching google for examples I think I figured it out.
To get Slim working with Middleman
gem "slim"
to your project's gemfilegem install bundler
require 'slim'