Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 5 additions, 0 deletions.gitignore
- Gemfile 5 additions, 0 deletionsGemfile
- LICENSE.txt 21 additions, 0 deletionsLICENSE.txt
- README.md 52 additions, 0 deletionsREADME.md
- _layouts/default.html 1 addition, 0 deletions_layouts/default.html
- _layouts/page.html 5 additions, 0 deletions_layouts/page.html
- _layouts/post.html 5 additions, 0 deletions_layouts/post.html
- jekyll-theme-lcsb-default.gemspec 19 additions, 0 deletionsjekyll-theme-lcsb-default.gemspec
.gitignore
0 → 100644
Gemfile
0 → 100644
# frozen_string_literal: true | ||
source "https://rubygems.org" | ||
ruby 2.5 | ||
gemspec |
LICENSE.txt
0 → 100644
README.md
0 → 100644
_layouts/default.html
0 → 100644
_layouts/page.html
0 → 100644
_layouts/post.html
0 → 100644
jekyll-theme-lcsb-default.gemspec
0 → 100644
# frozen_string_literal: true | ||
Gem::Specification.new do |spec| | ||
spec.name = "jekyll-theme-lcsb-default" | ||
spec.version = "0.1.0" | ||
spec.authors = ["Trefex"] | ||
spec.email = ["lcsb-sysadmins@uni.lu"] | ||
spec.summary = "TODO: Write a short summary, because Rubygems requires one." | ||
spec.homepage = "TODO: Put your gem's website or public repo URL here." | ||
spec.license = "MIT" | ||
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", "~> 3.7" | ||
spec.add_development_dependency "bundler", "~> 1.16" | ||
spec.add_development_dependency "rake", "~> 12.0" | ||
end |
Please register or sign in to comment