forked from sproogen/modern-resume-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodern-resume-theme.gemspec
24 lines (18 loc) · 972 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
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 = ["James Grant"]
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 = '~> 2.0'
spec.add_runtime_dependency 'github-pages', '~> 186'
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"
spec.add_development_dependency "bundler", "~> 2.0.1"
spec.add_development_dependency "html-proofer", "~> 3.9"
end