Skip to content

Commit 93bab03

Browse files
committed
Updates
- [x] update email from [email protected] to [email protected] - [x] update ruby from 2.5.1 to 2.7.1 (latest supported by github pages) - [x] update jekyll from 3.7.4 to 3.9.0 (latest supported by github pages) - [x] update config from feed to feed.path for jekyll-feed plugin upgrade - [x] update templates to use feed.path instead of just feed due to config update - [x] update bundler from 2.0.1 to 2.2.4
1 parent 6c12f26 commit 93bab03

File tree

7 files changed

+67
-63
lines changed

7 files changed

+67
-63
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ _site
33
.ruby-version
44
.ruby-gemset
55
.sass-cache/*
6+
.jekyll-cache/*

Gemfile

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source "https://rubygems.org"
2-
ruby "2.5.1"
2+
ruby "2.7.1" # this is the latest version supported by github pages via https://pages.github.com/versions/
33

44
# Hello! This is where you manage which Jekyll version is used to run.
55
# When you want to use a different version, change it below, save the
@@ -9,23 +9,24 @@ ruby "2.5.1"
99
#
1010
# This will help ensure the proper Jekyll version is running.
1111
# Happy Jekylling!
12-
gem "jekyll", "~> 3.7.4"
12+
gem "jekyll", "~> 3.9.0" # this is the latest version supported by github pages via https://pages.github.com/versions/
1313

1414
# This is the default theme for new Jekyll sites. You may change this to anything you like.
15-
gem "minima", "~> 2.0"
15+
gem "minima"
16+
17+
gem "kramdown-parser-gfm"
1618

1719
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
1820
# uncomment the line below. To upgrade, run `bundle update github-pages`.
1921
# gem "github-pages", group: :jekyll_plugins
2022

2123
# If you have any plugins, put them here!
2224
group :jekyll_plugins do
23-
#gem "jekyll-feed", "~> 0.6"
24-
gem "jekyll-gist", "~> 1.4.1"
25-
gem "jekyll-redirect-from", "~> 0.12.1"
25+
gem "jekyll-gist"
26+
gem "jekyll-redirect-from"
2627
end
2728

2829
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
2930
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
3031

31-
gem 'wdm', '>= 0.1.0'
32+
gem 'wdm'

Gemfile.lock

+52-51
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,101 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.5.2)
5-
public_suffix (>= 2.0.2, < 4.0)
4+
addressable (2.7.0)
5+
public_suffix (>= 2.0.2, < 5.0)
66
colorator (1.1.0)
7-
concurrent-ruby (1.1.4)
8-
em-websocket (0.5.1)
7+
concurrent-ruby (1.1.8)
8+
em-websocket (0.5.2)
99
eventmachine (>= 0.12.9)
1010
http_parser.rb (~> 0.6.0)
1111
eventmachine (1.2.7)
12-
eventmachine (1.2.7-x64-mingw32)
13-
faraday (0.15.1)
12+
faraday (1.3.0)
13+
faraday-net_http (~> 1.0)
1414
multipart-post (>= 1.2, < 3)
15-
ffi (1.10.0)
16-
ffi (1.10.0-x64-mingw32)
15+
ruby2_keywords
16+
faraday-net_http (1.0.1)
17+
ffi (1.15.0)
1718
forwardable-extended (2.6.0)
1819
http_parser.rb (0.6.0)
1920
i18n (0.9.5)
2021
concurrent-ruby (~> 1.0)
21-
jekyll (3.7.4)
22+
jekyll (3.9.0)
2223
addressable (~> 2.4)
2324
colorator (~> 1.0)
2425
em-websocket (~> 0.5)
2526
i18n (~> 0.7)
2627
jekyll-sass-converter (~> 1.0)
2728
jekyll-watch (~> 2.0)
28-
kramdown (~> 1.14)
29+
kramdown (>= 1.17, < 3)
2930
liquid (~> 4.0)
3031
mercenary (~> 0.3.3)
3132
pathutil (~> 0.9)
3233
rouge (>= 1.7, < 4)
3334
safe_yaml (~> 1.0)
34-
jekyll-feed (0.9.3)
35-
jekyll (~> 3.3)
36-
jekyll-gist (1.4.1)
35+
jekyll-feed (0.15.1)
36+
jekyll (>= 3.7, < 5.0)
37+
jekyll-gist (1.5.0)
3738
octokit (~> 4.2)
38-
jekyll-redirect-from (0.12.1)
39-
jekyll (~> 3.3)
39+
jekyll-redirect-from (0.16.0)
40+
jekyll (>= 3.3, < 5.0)
4041
jekyll-sass-converter (1.5.2)
4142
sass (~> 3.4)
42-
jekyll-seo-tag (2.4.0)
43-
jekyll (~> 3.3)
44-
jekyll-watch (2.1.2)
43+
jekyll-seo-tag (2.7.1)
44+
jekyll (>= 3.8, < 5.0)
45+
jekyll-watch (2.2.1)
4546
listen (~> 3.0)
46-
kramdown (1.17.0)
47-
liquid (4.0.1)
48-
listen (3.1.5)
49-
rb-fsevent (~> 0.9, >= 0.9.4)
50-
rb-inotify (~> 0.9, >= 0.9.7)
51-
ruby_dep (~> 1.2)
47+
kramdown (2.3.0)
48+
rexml
49+
kramdown-parser-gfm (1.1.0)
50+
kramdown (~> 2.0)
51+
liquid (4.0.3)
52+
listen (3.4.1)
53+
rb-fsevent (~> 0.10, >= 0.10.3)
54+
rb-inotify (~> 0.9, >= 0.9.10)
5255
mercenary (0.3.6)
53-
minima (2.5.0)
54-
jekyll (~> 3.5)
56+
minima (2.5.1)
57+
jekyll (>= 3.5, < 5.0)
5558
jekyll-feed (~> 0.9)
5659
jekyll-seo-tag (~> 2.1)
57-
multipart-post (2.0.0)
58-
octokit (4.9.0)
60+
multipart-post (2.1.1)
61+
octokit (4.20.0)
62+
faraday (>= 0.9)
5963
sawyer (~> 0.8.0, >= 0.5.3)
6064
pathutil (0.16.2)
6165
forwardable-extended (~> 2.6)
62-
public_suffix (3.0.3)
63-
rb-fsevent (0.10.3)
64-
rb-inotify (0.10.0)
66+
public_suffix (4.0.6)
67+
rb-fsevent (0.10.4)
68+
rb-inotify (0.10.1)
6569
ffi (~> 1.0)
66-
rouge (3.3.0)
67-
ruby_dep (1.5.0)
68-
safe_yaml (1.0.4)
69-
sass (3.7.3)
70+
rexml (3.2.4)
71+
rouge (3.26.0)
72+
ruby2_keywords (0.0.4)
73+
safe_yaml (1.0.5)
74+
sass (3.7.4)
7075
sass-listen (~> 4.0.0)
7176
sass-listen (4.0.0)
7277
rb-fsevent (~> 0.9, >= 0.9.4)
7378
rb-inotify (~> 0.9, >= 0.9.7)
74-
sawyer (0.8.1)
75-
addressable (>= 2.3.5, < 2.6)
76-
faraday (~> 0.8, < 1.0)
77-
thread_safe (0.3.6)
78-
tzinfo (1.2.5)
79-
thread_safe (~> 0.1)
80-
tzinfo-data (1.2018.5)
81-
tzinfo (>= 1.0.0)
79+
sawyer (0.8.2)
80+
addressable (>= 2.3.5)
81+
faraday (> 0.8, < 2.0)
8282
wdm (0.1.1)
8383

8484
PLATFORMS
8585
ruby
86-
x64-mingw32
86+
x86_64-darwin-20
8787

8888
DEPENDENCIES
89-
jekyll (~> 3.7.4)
90-
jekyll-gist (~> 1.4.1)
91-
jekyll-redirect-from (~> 0.12.1)
92-
minima (~> 2.0)
89+
jekyll (~> 3.9.0)
90+
jekyll-gist
91+
jekyll-redirect-from
92+
kramdown-parser-gfm
93+
minima
9394
tzinfo-data
94-
wdm (>= 0.1.0)
95+
wdm
9596

9697
RUBY VERSION
97-
ruby 2.5.1p57
98+
ruby 2.7.1p83
9899

99100
BUNDLED WITH
100-
2.0.1
101+
2.2.14

_config.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
# in the templates via {{ site.myvariable }}.
1616
title: Los Techies
1717
tagline:
18-
email: admin@lostechies.com
18+
email: pablo@lostechies.com
1919
description: >- # this means to ignore newlines until "baseurl:"
2020
#baseurl: "/blog" # the subpath of your site, e.g. /blog
2121
baseurl: "" # the subpath of your site, e.g. /blog
2222
url: "https://lostechies.com" # the base hostname & protocol for your site, e.g. http://example.com
2323
identifier: "https*://lostechies.com" # regex to identify local site posts
24-
feed: "https://feeds.feedburner.com/LosTechies"
24+
feed:
25+
path: "https://feeds.feedburner.com/LosTechies"
2526
twitter_username: lostechies
2627
github_username: lostechies
2728
#permalink: /:collection/:year/:month/:day/:title/

_includes/nav.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<div class="nav-right nav-menu" id='nav-menu'>
2727
<a href="{{ site.baseurl }}/about" class="nav-item">About</a>
28-
<a href="{{ site.feed }}" class="nav-item"><img src="{{ site.baseurl }}/assets/images/rss.png"/></a>
28+
<a href="{{ site.feed.path }}" class="nav-item"><img src="{{ site.baseurl }}/assets/images/rss.png"/></a>
2929
</div>
3030

3131
<span class="nav-toggle" id="nav-toggle">

_layouts/aggregate_default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<div class="nav-right nav-menu" id='nav-menu'>
4646
<a href="{{ site.baseurl }}/about" class="nav-item">About</a>
4747

48-
<a href="{{ site.feed }}" class="nav-item"><img src="{{ site.baseurl }}/assets/images/rss.png"/></a>
48+
<a href="{{ site.feed.path }}" class="nav-item"><img src="{{ site.baseurl }}/assets/images/rss.png"/></a>
4949
</div>
5050

5151
<span class="nav-toggle" id="nav-toggle">

_layouts/author_default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
<a href="{{ about_url }}" class="nav-item">About</a>
5757

58-
<a href="{{ site.feed }}" class="nav-item"><img src="{{ site.baseurl }}/assets/images/rss.png"/></a>
58+
<a href="{{ site.feed.path }}" class="nav-item"><img src="{{ site.baseurl }}/assets/images/rss.png"/></a>
5959
</div>
6060

6161
<span class="nav-toggle" id="nav-toggle">

0 commit comments

Comments
 (0)