forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsolo.gemspec
More file actions
23 lines (17 loc) · 831 Bytes
/
consolo.gemspec
File metadata and controls
23 lines (17 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'consolo'
spec.version = '0.1.1'
spec.authors = ['Forthoney']
spec.email = ['castlehoneyjung@gmail.com']
spec.summary = "A console-inspired jekyll theme for personal blogs and websites. Improved/expanded fork of b2a3e8's jekyll-theme-console."
spec.homepage = 'https://github.com/Forthoney/consolo'
spec.license = 'MIT'
spec.metadata = { "github_repo" => "ssh://github.com/Forthoney/consolo" }
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(/^(assets|_layouts|_includes|_sass|LICENSE|README)/i)
end
spec.add_runtime_dependency 'jekyll', '~> 3.9'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake', '~> 12.0'
end