-
Notifications
You must be signed in to change notification settings - Fork 1
/
jekyll-haml-markup.gemspec
34 lines (28 loc) · 1.34 KB
/
jekyll-haml-markup.gemspec
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
27
28
29
30
31
32
33
34
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jekyll/haml/markup/version'
Gem::Specification.new do |spec|
spec.name = 'jekyll-haml-markup'
spec.version = Jekyll::Haml::Markup::VERSION
spec.authors = ['Alvaro Faundez']
spec.email = ['alvaro@faundez.net']
spec.summary = 'Jekyll plugin to use Haml on templates.'
spec.description = 'Jekyll plugin that add the option to write layouts' \
' and partials in Haml.'
spec.homepage = 'https://github.com/afaundez/jekyll-haml-markup'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.1.0'
spec.add_development_dependency 'bundler', '>= 1.16', '< 3.0'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'nokogiri', '~> 1.6', '>= 1.6.8'
spec.add_development_dependency 'rake', '~> 12.3.3'
spec.add_development_dependency 'rubocop', '~> 0.57', '>= 0.57.2'
spec.add_runtime_dependency 'haml', '~> 5.0', '>= 5.0.0'
spec.add_runtime_dependency 'jekyll', '>= 3.0', '< 5.0'
end