-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjekyll-antex.gemspec
31 lines (24 loc) · 1.07 KB
/
jekyll-antex.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jekyll/antex/version'
Gem::Specification.new do |spec|
spec.name = 'jekyll-antex'
spec.version = Jekyll::Antex::VERSION
spec.license = 'MIT'
spec.summary = 'Universal TeX integration for Jekyll'
spec.description = <<~DESCRIPTION.gsub(/\s+/, ' ')
Jekyll-anTeX implements universal TeX support in Jekyll
to embed and render arbitrary code using any engine and dialect.
DESCRIPTION
spec.author = 'Paolo Brasolin'
spec.email = '[email protected]'
spec.homepage = 'https://github.com/paolobrasolin/jekyll-antex'
spec.files = `git ls-files lib README.md LICENSE.txt`.split("\n")
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.6'
spec.add_runtime_dependency 'antex', '~> 0.2.0'
spec.add_runtime_dependency 'jekyll', ['>= 3', '< 5']
spec.add_runtime_dependency 'kramdown-parser-gfm', '~> 1.1.0'
spec.add_runtime_dependency 'nokogiri', '~> 1'
end