-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjekyll-calconnect.gemspec
More file actions
27 lines (22 loc) · 1.04 KB
/
jekyll-calconnect.gemspec
File metadata and controls
27 lines (22 loc) · 1.04 KB
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 = "jekyll-calconnect"
spec.version = "1.0.0"
spec.authors = ["CalConnect"]
spec.email = ["support@calconnect.org"]
spec.summary = "Jekyll theme for CalConnect documentation sites"
spec.description = "A Jekyll theme gem providing semantic HTML layouts, " \
"AsciiDoc and Markdown content support, and Tailwind CSS " \
"integration for CalConnect documentation websites."
spec.homepage = "https://github.com/calconnect/jekyll-calconnect"
spec.license = "MIT"
spec.files = Dir[
"{lib,_layouts,_includes,_sass,_data,assets}/**/*",
"LICENSE.txt", "README.md"
].reject { |f| File.directory?(f) }
spec.required_ruby_version = ">= 2.7.0"
spec.add_runtime_dependency "jekyll", ">= 4.0", "< 5.0"
spec.add_runtime_dependency "jekyll-sass-converter", ">= 2.0"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 13.0"
end