-
Notifications
You must be signed in to change notification settings - Fork 1
/
jekyll-theme-prettydocs.gemspec
23 lines (20 loc) · 1.14 KB
/
jekyll-theme-prettydocs.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |spec|
spec.name = "jekyll-theme-prettydocs"
spec.version = "1.0.0"
spec.authors = ["Connor Christie", "Alexandru Coman"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = %q{PrettyDocs-Jekyll is a free project documentation theme designed for developers & startups.}
spec.description = "PrettyDocs-Jekyll is a free project documentation theme designed for developers & startups."
spec.homepage = "https://github.com/ConnorChristie/jekyll-theme-prettydocs"
spec.license = "CC-BY-3.0"
all_files = `git ls-files -z`.split("\x0")
spec.files = all_files.select { |filename|
filename.match(%r{^(_data|_includes|_layouts|_sass|assets)/|(LICENSE|README)((\.(txt|md|markdown)|$))}i)
}
spec.platform = Gem::Platform::RUBY
spec.add_development_dependency "jekyll", "~> 3.3"
spec.add_development_dependency "bundler", "~> 1.12"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.0"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.1"
spec.add_runtime_dependency "liquid-md5", "~> 0.0.3"
end