-
Notifications
You must be signed in to change notification settings - Fork 128
/
ed..gemspec
30 lines (25 loc) · 1.41 KB
/
ed..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
27
28
29
30
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "ed."
spec.version = "1.3.0"
spec.authors = ["Alex Gil", "Karl Stolley"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = "A Jekyll theme for minimal editions"
spec.description = "Ed is a Jekyll theme designed for textual editors based on minimal computing principles, and focused on legibility, durability, ease and flexibility."
spec.homepage = "https://minicomp.github.io/ed/"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.2.7"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/minicomp/ed/issues",
"changelog_uri" => "https://github.com/minicomp/ed/releases",
"documentation_uri" => "https://minicomp.github.io/ed/documentation/",
"wiki_uri" => "https://github.com/minicomp/ed/wiki",
"homepage_uri" => "https://minicomp.github.io/ed/",
"source_code_uri" => "https://github.com/minicomp/ed"
}
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(404|assets|optional|_layouts|_includes|_sass|_texts|index|search|about|credits|documentation|atom|Gemfile|LICENSE|README)}i) }
spec.add_runtime_dependency "jekyll", "~> 4.2.0"
spec.add_development_dependency "bundler", ">= 2.3"
spec.add_development_dependency "rake", ">= 13.0"
spec.add_development_dependency "webrick", ">= 1.7"
end