-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from chriskyfung:chore/gems-update
🔧 Update VSCode settings and dependencies for Jekyll project
- Loading branch information
Showing
6 changed files
with
88 additions
and
72 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
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
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 |
---|---|---|
@@ -1,44 +1,45 @@ | ||
source "https://rubygems.org" | ||
|
||
ruby RUBY_VERSION | ||
|
||
# Hello! This is where you manage which Jekyll version is used to run. | ||
# When you want to use a different version, change it below, save the | ||
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: | ||
# | ||
# bundle exec jekyll serve | ||
# | ||
# This will help ensure the proper Jekyll version is running. | ||
# Happy Jekylling! | ||
gem "jekyll", "~> 4.2.0" | ||
|
||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and | ||
# uncomment the line below. To upgrade, run `bundle update github-pages`. | ||
# gem "github-pages", group: :jekyll_plugins | ||
# If you have any plugins, put them here! | ||
group :jekyll_plugins do | ||
gem 'jekyll-archives' | ||
gem 'jekyll-feed' | ||
gem 'jekyll-paginate' | ||
gem 'jekyll-redirect-from' | ||
gem 'jekyll-seo-tag' | ||
gem 'jekyll-sitemap' | ||
gem "jekyll-github-metadata" | ||
end | ||
|
||
# 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" | ||
gem "tzinfo-data" | ||
end | ||
|
||
if RUBY_PLATFORM.downcase.include?('mswin') || RUBY_PLATFORM.downcase.include?('mingw') | ||
gem "tzinfo" | ||
gem "tzinfo-data" | ||
end | ||
|
||
gem "webrick" | ||
|
||
# Performance-booster for watching directories on Windows | ||
gem "wdm", ">= 0.1.0", :platforms => [:mingw, :x64_mingw, :mswin] | ||
source "https://rubygems.org" | ||
|
||
ruby RUBY_VERSION | ||
|
||
# Hello! This is where you manage which Jekyll version is used to run. | ||
# When you want to use a different version, change it below, save the | ||
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: | ||
# | ||
# bundle exec jekyll serve | ||
# | ||
# This will help ensure the proper Jekyll version is running. | ||
# Happy Jekylling! | ||
|
||
# Manage Jekyll version | ||
gem "jekyll", "~> 4.3.4" | ||
|
||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and | ||
# uncomment the line below. To upgrade, run `bundle update github-pages`. | ||
# gem "github-pages", group: :jekyll_plugins | ||
# If you have any plugins, put them here! | ||
|
||
# Jekyll plugins | ||
group :jekyll_plugins do | ||
gem 'jekyll-archives' | ||
gem 'jekyll-feed' | ||
gem 'jekyll-paginate' | ||
gem 'jekyll-redirect-from' | ||
gem 'jekyll-seo-tag' | ||
gem 'jekyll-sitemap' | ||
gem "jekyll-github-metadata" | ||
end | ||
|
||
# Platform-specific gems | ||
# 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" | ||
gem "tzinfo-data" | ||
end | ||
|
||
# Performance booster for watching directories on Windows | ||
gem "wdm", ">= 0.1.0", platforms: [:mingw, :x64_mingw, :mswin] | ||
|
||
# Required for running Jekyll on Windows | ||
gem "webrick" |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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