forked from sproogen/modern-resume-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodern-resume-theme.gemspec
25 lines (19 loc) · 1018 Bytes
/
modern-resume-theme.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "modern-resume-theme/version"
Gem::Specification.new do |spec|
spec.name = "modern-resume-theme"
spec.version = ModernResumeTheme::VERSION
spec.authors = ["Clayton Auld"]
spec.email = ["[email protected]"]
spec.summary = "A modern simple static resume template and theme. Powered by Jekyll and GitHub pages."
spec.homepage = "https://github.com/sproogen/modern-resume-theme"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README)!i) }
# spec.required_ruby_version = '~> 3.2'
spec.required_ruby_version = '>= 3.1.1'
spec.add_runtime_dependency 'github-pages', '~> 228'
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.8.0"
spec.add_runtime_dependency "webrick", "~> 1.8.1"
spec.add_development_dependency "html-proofer", "~> 5.0.5"
end