forked from jekyll/minima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
minima.gemspec
25 lines (19 loc) · 844 Bytes
/
minima.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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "minima"
spec.version = "1.2.0"
spec.authors = ["Joel Glovier"]
spec.email = ["jglovier@github.com"]
spec.summary = %q{A beautiful, minimal theme for Jekyll. NOT DONE YET.}
spec.homepage = "https://github.com/jekyll/minima"
spec.license = "MIT"
spec.metadata["plugin_type"] = "theme"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(_(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_development_dependency "jekyll", "~> 3.2"
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_development_dependency "rake", "~> 10.0"
end