-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjekyll-theme-bootstrap4.gemspec
More file actions
25 lines (22 loc) · 999 Bytes
/
jekyll-theme-bootstrap4.gemspec
File metadata and controls
25 lines (22 loc) · 999 Bytes
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
Version = [0, 0, 14]
Gem::Specification.new do |spec|
spec.authors = ['Ramon de C Valle']
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\0").reject { |f| f.match(%r{(\A(?:\.|Gemfile|_drafts)|(?:\.gemspec)\Z)}) }
end
spec.name = 'jekyll-theme-bootstrap4'
spec.summary = 'A Bootstrap-based Jekyll theme.'
spec.version = Version.join('.')
spec.description = ''
spec.email = 'rcvalle@users.noreply.github.com'
spec.homepage = 'https://github.com/rcvalle/jekyll-theme-bootstrap4'
spec.license = 'MIT'
spec.metadata = {}
spec.add_development_dependency "bundler", "~> 2.1"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "webrick", "~> 1.7"
spec.add_runtime_dependency "jekyll", "~> 4.2"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1"
spec.required_ruby_version = '>= 2.3.0'
end