-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathklise.gemspec
More file actions
28 lines (23 loc) · 1.04 KB
/
Copy pathklise.gemspec
File metadata and controls
28 lines (23 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
28
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "klise"
spec.version = "1.0.1"
spec.authors = ["Mahendrata Harpi"]
spec.email = ["justharpi@gmail.com"]
spec.summary = "Klisé is a minimalist Jekyll theme for running a personal site or blog, light & dark mode support."
spec.homepage = "https://github.com/piharpi/jekyll-klise"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(_(includes|layouts|sass)/|(assets|LICENSE|README)((\.(txt|md|markdown|yml)|$)))}i)
end
spec.add_runtime_dependency "jekyll", "~> 4.3.4"
spec.add_runtime_dependency 'jekyll-feed', '~> 0.17'
spec.add_runtime_dependency 'jekyll-sitemap', '~> 1.4'
spec.add_runtime_dependency 'jekyll-compose', '~> 0.12'
spec.add_runtime_dependency 'jekyll-postfiles', '~> 3.1'
spec.add_runtime_dependency 'csv'
spec.add_runtime_dependency 'base64'
spec.add_runtime_dependency 'bigdecimal'
spec.add_development_dependency "bundler", "~> 2.1"
end