-
Notifications
You must be signed in to change notification settings - Fork 2
/
lanyon.gemspec
47 lines (36 loc) · 1.12 KB
/
lanyon.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true
require_relative "lib/lanyon/version"
version = Lanyon::VERSION
date = Lanyon::DATE
Gem::Specification.new do |s|
s.name = "lanyon"
s.version = version
s.date = date
s.summary = "Lanyon serves your Jekyll site as a Rack application."
s.description =
"Lanyon is a good friend of Jekyll, the static site generator, " \
"and transforms your website into a Rack application."
s.authors = ["Marcus Stollsteimer"]
s.email = "[email protected]"
s.homepage = "https://github.com/stomar/lanyon/"
s.license = "MIT"
s.required_ruby_version = ">= 3.1.0"
s.add_dependency "jekyll", ">= 2.0"
s.add_dependency "rack", ">= 1.6", "< 3.0"
s.require_paths = ["lib"]
s.files =
%w[
README.md
LICENSE
History.md
lanyon.gemspec
Gemfile
Rakefile
.yardopts
] +
Dir.glob("lib/**/*") +
Dir.glob("test/**/*") +
Dir.glob("demo/**/*").reject {|f| f.start_with?("demo/_site/") }
s.extra_rdoc_files = %w[README.md LICENSE History.md]
s.rdoc_options = ["--charset=UTF-8", "--main=README.md"]
end