File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -5,16 +5,20 @@ This gem provides a [Jekyll](http://github.com/mojombo/jekyll) converter for
5
5
6
6
## Installation
7
7
8
- If using [ Bundler] ( http://gembundler.com ) , add this line to your application's Gemfile:
8
+ If using [ Bundler] ( http://gembundler.com ) , add these lines to your application's Gemfile:
9
9
10
- gem 'jekyll-haml'
10
+ ``` rb
11
+ group :jekyll_plugins do
12
+ gem ' jekyll-haml'
13
+ end
14
+ ```
11
15
12
- In a file within your Jekyll project's ` _plugins ` directory :
16
+ Alternatively, if you don't use Bundler, just update your Jekyll project's ` _config.yml ` :
13
17
14
- # _plugins/bundler.rb
15
- require "rubygems"
16
- require "bundler/setup"
17
- Bundler.require(:default)
18
+ ``` yml
19
+ gems :
20
+ - jekyll-haml
21
+ ` ` `
18
22
19
23
## Usage
20
24
You can’t perform that action at this time.
0 commit comments