-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjekyll-theme-ej.gemspec
More file actions
23 lines (18 loc) · 932 Bytes
/
jekyll-theme-ej.gemspec
File metadata and controls
23 lines (18 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "jekyll-theme-ej"
spec.version = "0.1.0"
spec.authors = ["Siddharth Chandrasekaran"]
spec.email = ["siddharth@embedjournal.com"]
spec.summary = "This is a jekyll theme for https://embedjounal.com"
spec.homepage = "https://embedjournal.com"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|_config\.yml)!i) }
spec.add_runtime_dependency "jekyll", "~> 4.1"
spec.add_runtime_dependency "kramdown", "~> 2.3"
spec.add_runtime_dependency "jekyll-feed", "~> 0.15"
spec.add_runtime_dependency "jekyll-paginate-v2", "~> 3.0"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"
spec.add_runtime_dependency "jekyll-archives", "~> 2.2"
spec.add_runtime_dependency "jemoji", "~> 0.12"
end