-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathiiifc-theme.gemspec
More file actions
27 lines (22 loc) · 945 Bytes
/
iiifc-theme.gemspec
File metadata and controls
27 lines (22 loc) · 945 Bytes
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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "iiifc-theme"
spec.version = "0.1.0"
spec.authors = ["IIIF-C"]
spec.email = ["admin@iiif.io"]
spec.summary = %q{Jekyll gem theme for IIIF-C web properties.}
spec.homepage = ""
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
spec.metadata["plugin_type"] = "theme"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r!^(assets|lib|_(includes|layouts|sass|data)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i)
end
spec.add_runtime_dependency "html-proofer"
spec.add_runtime_dependency "jekyll", ">= 4.0", "< 4.2"
spec.add_runtime_dependency "jekyll-data"
spec.add_runtime_dependency "jekyll-gzip"
spec.add_runtime_dependency "jekyll-redirect-from"
spec.add_runtime_dependency "jekyll-liquify"
spec.add_runtime_dependency "rake"
end