-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslow-science.gemspec
More file actions
31 lines (22 loc) · 1.05 KB
/
slow-science.gemspec
File metadata and controls
31 lines (22 loc) · 1.05 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
# coding: utf-8
# frozen_string_literal: true
# mygem.gemspec
require_relative "version.rb"
Gem::Specification.new do |spec|
spec.name = 'slow-science'
spec.version = Mygem::VERSION
spec.authors = ['Arran Curran']
spec.email = ['arran@madeslowly.co.uk']
spec.summary = %q{Jekyll theme designed for scientists, by a scientist.}
spec.homepage = 'https://github.com/madeslowly/slow-science'
spec.license = 'MIT'
spec.metadata['plugin_type'] = 'theme'
spec.files = `git ls-files -z`.split('\x0').select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README)!i) }
spec.add_runtime_dependency 'jekyll', '~> 4.0'
spec.add_runtime_dependency 'jekyll-feed', '~> 0.15.0'
spec.add_runtime_dependency 'jekyll-paginate', '~> 1.1.0'
spec.add_runtime_dependency 'jekyll-autoprefixer', '~> 1.0.2'
spec.add_runtime_dependency 'jekyll-sitemap', '~> 1.4.0'
spec.add_runtime_dependency 'jekyll-target-blank', '~> 2.0.0'
spec.add_runtime_dependency 'jekyll-sass-converter', '~> 2.1.0'
end