This repository was archived by the owner on Oct 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicklecore.gemspec
More file actions
32 lines (27 loc) · 1.37 KB
/
picklecore.gemspec
File metadata and controls
32 lines (27 loc) · 1.37 KB
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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'picklecore'
spec.version = '1.1.0'
spec.authors = ['Reece Dunham', 'Param Thakkar']
spec.email = ['me@rdil.rocks']
spec.summary = 'A Jekyll theme built to create personal and small websites, but can easily scale!'
spec.homepage = 'https://github.com/rdilweb/PickleCore'
spec.license = 'MPL-2.0'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/rdilweb/PickleCore/issues/',
'documentation_uri' => 'https://docs.rdil.rocks/libraries/picklecore/',
'homepage_uri' => 'https://github.com/rdilweb/PickleCore/',
'source_code_uri' => 'https://github.com/rdilweb/PickleCore/tree/master',
'wiki_uri' => 'https://github.com/rdilweb/PickleCore/blob/master/README.md'
}
spec.metadata['plugin_type'] = 'theme'
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)(\.(txt|md)|$))!i)
end
spec.add_runtime_dependency 'jekyll', '> 3.8', '< 5'
spec.add_runtime_dependency 'jekyll-default-layout', '= 0.1.4'
spec.add_runtime_dependency 'jekyll-relative-links', '= 0.6.1'
spec.add_runtime_dependency 'jekyll-seo-tag', '= 2.6.1'
spec.add_runtime_dependency 'kramdown-parser-gfm', '= 1.1.0'
spec.add_development_dependency 'rake', '= 13.0.1'
end