-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathoscailte.gemspec
24 lines (19 loc) · 893 Bytes
/
oscailte.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 = "oscailte"
spec.version = "3.1.0"
spec.authors = ["Stephen Coogan"]
spec.email = ["[email protected]"]
spec.summary = "Oscailte — A powerful, clean, and responsive Jekyll theme."
spec.homepage = "https://github.com/coogie/oscailte"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i)
end
spec.add_runtime_dependency "jekyll", ">= 3.8", "< 5.0"
spec.add_runtime_dependency "jekyll-avatar", "~> 0.7"
spec.add_runtime_dependency "jekyll-feed", "~> 0.13"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.6"
spec.add_development_dependency "bundler", "~> 2.0.2"
spec.add_development_dependency "rake", "~> 12.0"
end