forked from pattex/jekyll-tagging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
26 lines (23 loc) · 758 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require File.expand_path(%q{../lib/jekyll/tagging/version}, __FILE__)
begin
require 'hen'
Hen.lay! {{
:gem => {
:name => %q{jekyll-tagging},
:version => Jekyll::Tagging::VERSION,
:summary => %q{Jekyll plugin to automatically generate a tag cloud and tag pages.},
:authors => ['Arne Eilermann', 'Jens Wille'],
:email => ['[email protected]', '[email protected]'],
:license => %q{MIT},
:homepage => :pattex,
:dependencies => %w[nuggets]
}
}}
rescue LoadError => err
warn "Please install the `hen' gem. (#{err})"
end
begin
require 'jekyll/testtasks/rake'
rescue LoadError => err
warn "Please install the `jekyll-testtasks' gem. (#{err})"
end