-
Notifications
You must be signed in to change notification settings - Fork 0
/
urban.gemspec
26 lines (19 loc) · 873 Bytes
/
urban.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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "urban"
spec.version = "0.1"
spec.authors = ["midzer"]
spec.email = [""]
spec.summary = %q{A Jekyll port of https://erosie.net/ with some modifications. It is designed for visual artists.}
spec.homepage = "https://github.com/midzer/urban-theme"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
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.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.add_runtime_dependency "jekyll", "~> 3.5"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"
spec.add_development_dependency "bundler", "~> 1.12"
end