-
Notifications
You must be signed in to change notification settings - Fork 63
/
mere-blog-theme.gemspec
24 lines (19 loc) · 1.03 KB
/
mere-blog-theme.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "mere-blog-theme"
spec.version = "1.0.1"
spec.authors = ["chrisrhymes"]
spec.email = ["csrhymes@gmail.com"]
spec.summary = "Mere is a minimal and simple blog theme, and nothing more, for use with Jekyll and GitHub Pages."
spec.homepage = "https://github.com/chrisrhymes/mere-blog-theme"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|package|node_modules)!i) }
spec.add_runtime_dependency "jekyll", ">= 4.3", "< 5.0"
spec.add_runtime_dependency "jekyll-feed", "~> 0.15"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.7"
spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 12.0"
end