-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
63 changed files
with
120 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Define standard eol format | ||
|
||
# Web Files | ||
*.html text eol=lf | ||
*.md text eol=lf | ||
*.css text eol=lf | ||
*.js text eol=lf | ||
|
||
# Jekyll related files | ||
*.yml text eol=lf | ||
|
||
# Git related files | ||
.gittattributes text eol=lf | ||
.gitignore text eol=lf | ||
.gitkeep text eol=lf | ||
|
||
# Ruby files | ||
*.rb text eol=lf | ||
Gemfile text eol=lf | ||
Gemfile.lock text eol=lf | ||
|
||
# Github specific fies | ||
LICENCE text eol=lf | ||
|
||
# Docker specific files | ||
Dockerfile text eol=lf | ||
|
||
# VSCode files | ||
*.json text eol=lf | ||
|
||
# General multimedia files | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.png binary | ||
*.t3x binary | ||
*.t3d binary | ||
*.exe binary | ||
*.data binary | ||
*.ttf binary | ||
*.eof binary | ||
*.eot binary | ||
*.swf binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mp3 binary | ||
*.ogg binary | ||
*.flv binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# project | ||
_site | ||
.sass-cache | ||
.vagrant | ||
|
||
# general | ||
.DS_Store | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
Gemfile.lock | ||
|
||
beautiful-jekyll-theme-*.gem |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem | ||
# and associated library. | ||
platforms :mingw, :x64_mingw, :mswin, :jruby do | ||
gem "tzinfo", "~> 1.2" | ||
gem "tzinfo-data" | ||
end | ||
|
||
# Performance-booster for watching directories on Windows | ||
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] | ||
|
||
gem 'webrick' | ||
|
||
gemspec |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# frozen_string_literal: true | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "beautiful-jekyll-theme" | ||
spec.version = "5.0.0" | ||
spec.authors = ["Dean Attali"] | ||
spec.email = ["daattali@gmail.com"] | ||
|
||
spec.summary = "Beautiful Jekyll is a ready-to-use Jekyll theme to help you create an awesome website quickly. Perfect for personal blogs or simple project websites, with a focus on responsive and clean design." | ||
spec.homepage = "https://beautifuljekyll.com" | ||
spec.license = "MIT" | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|_layouts|_includes|LICENSE|README|feed|404|_data|tags|staticman)}i) } | ||
|
||
spec.metadata = { | ||
"changelog_uri" => "https://beautifuljekyll.com/updates/", | ||
"documentation_uri" => "https://github.com/daattali/beautiful-jekyll#readme" | ||
} | ||
|
||
spec.add_runtime_dependency "jekyll", "~> 3.8" | ||
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1" | ||
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4" | ||
spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1" | ||
spec.add_runtime_dependency "kramdown", "~> 2.3.0" | ||
|
||
spec.add_development_dependency "bundler", ">= 1.16" | ||
spec.add_development_dependency "rake", "~> 12.0" | ||
end |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.