-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjasper2.gemspec
25 lines (21 loc) · 886 Bytes
/
jasper2.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
# ruby
# coding: utf-8
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'jasper2'
s.version = '0.1.0'
s.authors = ['Fábio Madeira', 'Contributors']
s.email = ['[email protected]']
s.homepage = 'https://github.com/jekyllt/jasper2'
s.summary = "This is a full-featured port of Ghost's default theme Casper v2 for Jekyll"
s.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^(assets|about|_(includes|layouts|data|plugins|posts)/|(LICENSE|README)((\.(txt|md)|$)))}i)
end
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.add_dependency 'jekyll', '> 3.9', '< 5.0'
s.add_dependency 'jekyll-paginate', '~> 1.1'
s.add_dependency 'jekyll-feed', '~> 0.15'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'slugify', '~> 1.0'
end