forked from jekyll/minima
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminima.gemspec
More file actions
22 lines (17 loc) · 770 Bytes
/
Copy pathminima.gemspec
File metadata and controls
22 lines (17 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "minima"
spec.version = "1.0.1"
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").reject { |f| f.match(%r{^(exe)/}) }
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