-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjekyll-pug.gemspec
22 lines (19 loc) · 923 Bytes
/
jekyll-pug.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "jekyll-pug"
gem.version = "1.6.1"
gem.authors = ["Doug Beney"]
gem.email = ["[email protected]"]
gem.description = %q{Flawlessly use Pug with Jekyll to convert Pug files into HTML}
gem.summary = %q{Use Pug with Jekyll.}
gem.homepage = "http://jekyll-pug.dougie.io"
gem.files = ["lib/jekyll-pug.rb", "lib/jekyll-pug/include-tag.rb", "lib/jekyll-pug/pug-renderer.rb"]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.license = "MIT"
gem.add_runtime_dependency 'jekyll', '>= 3.6', '< 5.0'
gem.add_runtime_dependency 'pug-ruby', '~> 2.0'
end