-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmillennial.gemspec
21 lines (16 loc) · 847 Bytes
/
millennial.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "millennial"
spec.version = "2.0.0"
spec.authors = ["Paul Le"]
spec.email = ["[email protected]"]
spec.summary = "A minimalist Jekyll theme for running a blog or publication powered by Jekyll and GitHub Pages"
spec.homepage = "https://github.com/LeNPaul/Millennial"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|CHANGELOG)!i) }
spec.add_runtime_dependency "jekyll", "~> 4.2"
spec.add_runtime_dependency "jekyll-feed", "~> 0.6"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.3"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.6"
end