Skip to content

Commit 5672cb5

Browse files
Upgrading Jekyll version (#45)
After this commit, every time it will fetch latest version of Jekyll rather than fixing to specific mentioned one. It will help to migrate to latest versions periodically. Upgrading from 3.3.1 version to latest whatever will fix the issue raised by Github. Fixing: #27
1 parent 7f70007 commit 5672cb5

File tree

4 files changed

+46
-36
lines changed

4 files changed

+46
-36
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
language: ruby
22
rvm:
33
- 2.3.3
4+
before_install:
5+
- bundle update listen
6+
install:
7+
- bundle install --jobs=3 --retry=3 --full-index --deployment
48
script:
59
- "./scripts/build"
610
- "./scripts/test"

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ruby RUBY_VERSION
99
#
1010
# This will help ensure the proper Jekyll version is running.
1111
# Happy Jekylling!
12-
gem "jekyll", "3.3.1"
12+
gem "jekyll"
1313

1414
# This is the default theme for new Jekyll sites. You may change this to anything you like.
1515
gem "minima", "~> 2.0"

Gemfile.lock

+40-34
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (5.2.1)
4+
activesupport (5.2.2)
55
concurrent-ruby (~> 1.0, >= 1.0.2)
66
i18n (>= 0.7, < 2)
77
minitest (~> 5.1)
@@ -10,96 +10,102 @@ GEM
1010
public_suffix (>= 2.0.2, < 4.0)
1111
colorator (1.1.0)
1212
colorize (0.8.1)
13-
concurrent-ruby (1.0.5)
13+
concurrent-ruby (1.1.4)
1414
cssminify2 (2.0.1)
15+
em-websocket (0.5.1)
16+
eventmachine (>= 0.12.9)
17+
http_parser.rb (~> 0.6.0)
1518
ethon (0.11.0)
1619
ffi (>= 1.3.0)
20+
eventmachine (1.2.7)
1721
execjs (2.7.0)
18-
ffi (1.9.25)
22+
ffi (1.10.0)
1923
forwardable-extended (2.6.0)
20-
html-proofer (3.9.2)
24+
html-proofer (3.10.0)
2125
activesupport (>= 4.2, < 6.0)
2226
addressable (~> 2.3)
2327
colorize (~> 0.8)
2428
mercenary (~> 0.3.2)
25-
nokogiri (~> 1.8.1)
29+
nokogiri (~> 1.9)
2630
parallel (~> 1.3)
2731
typhoeus (~> 1.3)
2832
yell (~> 2.0)
2933
htmlcompressor (0.4.0)
30-
i18n (1.1.0)
34+
http_parser.rb (0.6.0)
35+
i18n (0.9.5)
3136
concurrent-ruby (~> 1.0)
32-
jekyll (3.3.1)
37+
jekyll (3.8.5)
3338
addressable (~> 2.4)
3439
colorator (~> 1.0)
40+
em-websocket (~> 0.5)
41+
i18n (~> 0.7)
3542
jekyll-sass-converter (~> 1.0)
36-
jekyll-watch (~> 1.1)
37-
kramdown (~> 1.3)
38-
liquid (~> 3.0)
43+
jekyll-watch (~> 2.0)
44+
kramdown (~> 1.14)
45+
liquid (~> 4.0)
3946
mercenary (~> 0.3.3)
4047
pathutil (~> 0.9)
41-
rouge (~> 1.7)
48+
rouge (>= 1.7, < 4)
4249
safe_yaml (~> 1.0)
4350
jekyll-feed (0.11.0)
4451
jekyll (~> 3.3)
45-
jekyll-minifier (0.1.2)
52+
jekyll-minifier (0.1.9)
4653
cssminify2 (~> 2.0)
47-
htmlcompressor (~> 0.3)
48-
jekyll (~> 3.0)
49-
uglifier (~> 2.7)
54+
htmlcompressor (~> 0.4)
55+
jekyll (>= 3.5)
56+
uglifier (~> 4.1)
5057
jekyll-sass-converter (1.5.2)
5158
sass (~> 3.4)
5259
jekyll-seo-tag (2.5.0)
5360
jekyll (~> 3.3)
5461
jekyll-sitemap (1.2.0)
5562
jekyll (~> 3.3)
56-
jekyll-watch (1.5.1)
63+
jekyll-watch (2.1.2)
5764
listen (~> 3.0)
58-
json (2.1.0)
5965
kramdown (1.17.0)
60-
liquid (3.0.6)
66+
liquid (4.0.1)
6167
listen (3.1.5)
62-
rb-fsevent (~> 0.9, >= 0.9.4)
6368
rb-inotify (~> 0.9, >= 0.9.7)
6469
ruby_dep (~> 1.2)
6570
mercenary (0.3.6)
66-
mini_portile2 (2.3.0)
67-
minima (2.1.1)
68-
jekyll (~> 3.3)
71+
mini_portile2 (2.4.0)
72+
minima (2.5.0)
73+
jekyll (~> 3.5)
74+
jekyll-feed (~> 0.9)
75+
jekyll-seo-tag (~> 2.1)
6976
minitest (5.11.3)
70-
nokogiri (1.8.4)
71-
mini_portile2 (~> 2.3.0)
77+
nokogiri (1.10.0)
78+
mini_portile2 (~> 2.4.0)
7279
parallel (1.12.1)
73-
pathutil (0.16.1)
80+
pathutil (0.16.2)
7481
forwardable-extended (~> 2.6)
7582
public_suffix (3.0.3)
7683
rb-fsevent (0.10.3)
77-
rb-inotify (0.9.10)
78-
ffi (>= 0.5.0, < 2)
79-
rouge (1.11.1)
84+
rb-inotify (0.10.0)
85+
ffi (~> 1.0)
86+
rouge (3.3.0)
8087
ruby_dep (1.5.0)
8188
safe_yaml (1.0.4)
82-
sass (3.6.0)
89+
sass (3.7.3)
8390
sass-listen (~> 4.0.0)
8491
sass-listen (4.0.0)
8592
rb-fsevent (~> 0.9, >= 0.9.4)
8693
rb-inotify (~> 0.9, >= 0.9.7)
8794
thread_safe (0.3.6)
88-
typhoeus (1.3.0)
95+
typhoeus (1.3.1)
8996
ethon (>= 0.9.0)
9097
tzinfo (1.2.5)
9198
thread_safe (~> 0.1)
92-
uglifier (2.7.2)
93-
execjs (>= 0.3.0)
94-
json (>= 1.8.0)
99+
uglifier (4.1.20)
100+
execjs (>= 0.3.0, < 3)
95101
yell (2.0.7)
96102

97103
PLATFORMS
98104
ruby
99105

100106
DEPENDENCIES
101107
html-proofer
102-
jekyll (= 3.3.1)
108+
jekyll
103109
jekyll-feed (~> 0.6)
104110
jekyll-minifier
105111
jekyll-seo-tag

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ github_username: ultimatecoder
2727
# Build settings
2828
markdown: kramdown
2929
theme: minima
30-
gems:
30+
plugins:
3131
- jekyll-feed
3232
- jekyll-minifier
3333
- jekyll-sitemap

0 commit comments

Comments
 (0)