forked from jpasholk/jekyll-uikit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjekyll-uikit.gemspec
28 lines (22 loc) · 1.03 KB
/
jekyll-uikit.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "jekyll-uikit"
spec.version = "0.2.1"
spec.authors = ["jpasholk"]
spec.email = ["josh.pasholk@gmail.com"]
spec.summary = "Build a beautiful portfolio website in minutes with Jekyll-UiKit!"
spec.homepage = "https://github.com/jpasholk/jekyll-uikit"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(assets|_(data|includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))}i)
end
spec.add_runtime_dependency "jekyll", "~> 3.7"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.0"
spec.add_runtime_dependency 'github-pages', '~> 183'
spec.add_runtime_dependency 'jekyll-feed', '~> 0'
spec.add_runtime_dependency "jekyll-data", "~> 1.0"
spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 12.0"
end