-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlinaro-jekyll-theme.gemspec
45 lines (43 loc) · 1.99 KB
/
linaro-jekyll-theme.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
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "linaro-jekyll-theme"
spec.version = "5.1.0"
spec.authors = ["Kyle Kirkby"]
spec.email = ["[email protected]"]
spec.summary = "Linaro's bootstrap 4/jekyll 4 static website theme."
spec.homepage = "https://github.com/linaro-marketing/linaro-jekyll-theme"
spec.license = "MIT"
spec.metadata = {
"homepage_uri" => "https://github.com/linaro-marketing/linaro-jekyll-theme",
"source_code_uri" => "https://github.com/linaro-marketing/linaro-jekyll-theme/",
"bug_tracker_uri" => "https://github.com/linaro-marketing/linaro-jekyll-theme/issues",
}
# Spec Files
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(assets|_(data|includes|layouts|sass)/|(LICENSE|README|robots|_config)((\.(txt|md|markdown|yml)|$)))}i)
end
# Ruby Version
spec.required_ruby_version = '>=2.3'
# Jekyll 4 !
spec.add_runtime_dependency "jekyll", "~> 4.0.0"
# Jekyll cached include plugin
spec.add_runtime_dependency 'jekyll-include-cache', '0.2.0'
# Responsive images
spec.add_runtime_dependency "jekyll_picture_tag", '1.9.0'
# Jekyll Tidy - HTML minfier
spec.add_runtime_dependency 'jekyll-tidy', '0.2.2'
# Jekyll-toc for generating table of contents for documentation pages.
spec.add_runtime_dependency 'jekyll-toc', '0.15.0'
# Add's an RSS feed for your posts
spec.add_runtime_dependency "jekyll-feed", "0.13.0"
# Add's multi-lingual functionality
spec.add_runtime_dependency "jekyll-polyglot", "1.5.0"
# JS Bundler / Compression
spec.add_runtime_dependency 'japr', '0.4.2'
spec.add_runtime_dependency 'closure-compiler', '~> 1.1', '>= 1.1.14'
#spec.add_runtime_dependency "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Development Dependencies
spec.add_development_dependency "bundler", "1.17.3"
# spec.add_development_dependency "bundler", "1.17.3"
# spec.add_development_dependency "rake", "13.0.1"
end