Skip to content

Commit 97943c4

Browse files
committed
Updated ruby version for site generation with Jekyll
1 parent 20f9f3f commit 97943c4

File tree

2 files changed

+27
-21
lines changed

2 files changed

+27
-21
lines changed

site/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ task copyExampleFrontendJs(type: Copy, dependsOn: ':example-frontend-js:bundle')
1515

1616
task site(type: Exec, description: 'Generate github pages', dependsOn: [copyDocs, copyExampleFrontendJs]) {
1717
workingDir "$buildDir/gh-pages"
18-
commandLine 'jekyll', 'build'
18+
commandLine 'bundle', 'exec', 'jekyll', 'build'
1919
}
2020

2121
task clean(type: Delete) {

site/docs/Gemfile.lock

Lines changed: 26 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.5.0)
5-
public_suffix (~> 2.0, >= 2.0.2)
4+
addressable (2.5.2)
5+
public_suffix (>= 2.0.2, < 4.0)
66
colorator (1.1.0)
7-
ffi (1.9.17)
8-
ffi (1.9.17-x64-mingw32)
7+
ffi (1.9.18)
8+
ffi (1.9.18-x64-mingw32)
99
forwardable-extended (2.6.0)
1010
jekyll (3.4.0)
1111
addressable (~> 2.4)
@@ -18,29 +18,35 @@ GEM
1818
pathutil (~> 0.9)
1919
rouge (~> 1.7)
2020
safe_yaml (~> 1.0)
21-
jekyll-sass-converter (1.5.0)
21+
jekyll-sass-converter (1.5.1)
2222
sass (~> 3.4)
23-
jekyll-watch (1.5.0)
24-
listen (~> 3.0, < 3.1)
25-
kramdown (1.13.2)
23+
jekyll-watch (1.5.1)
24+
listen (~> 3.0)
25+
kramdown (1.16.2)
2626
liquid (3.0.6)
27-
listen (3.0.8)
27+
listen (3.1.5)
2828
rb-fsevent (~> 0.9, >= 0.9.4)
2929
rb-inotify (~> 0.9, >= 0.9.7)
30+
ruby_dep (~> 1.2)
3031
mercenary (0.3.6)
31-
pathutil (0.14.0)
32+
pathutil (0.16.1)
3233
forwardable-extended (~> 2.6)
33-
public_suffix (2.0.5)
34-
rb-fsevent (0.9.8)
35-
rb-inotify (0.9.8)
36-
ffi (>= 0.5.0)
34+
public_suffix (3.0.1)
35+
rb-fsevent (0.10.2)
36+
rb-inotify (0.9.10)
37+
ffi (>= 0.5.0, < 2)
3738
rouge (1.11.1)
39+
ruby_dep (1.5.0)
3840
safe_yaml (1.0.4)
39-
sass (3.4.23)
40-
thread_safe (0.3.5)
41-
tzinfo (1.2.2)
41+
sass (3.5.5)
42+
sass-listen (~> 4.0.0)
43+
sass-listen (4.0.0)
44+
rb-fsevent (~> 0.9, >= 0.9.4)
45+
rb-inotify (~> 0.9, >= 0.9.7)
46+
thread_safe (0.3.6)
47+
tzinfo (1.2.4)
4248
thread_safe (~> 0.1)
43-
tzinfo-data (1.2016.10)
49+
tzinfo-data (1.2017.3)
4450
tzinfo (>= 1.0.0)
4551

4652
PLATFORMS
@@ -52,7 +58,7 @@ DEPENDENCIES
5258
tzinfo-data
5359

5460
RUBY VERSION
55-
ruby 2.2.6p396
61+
ruby 2.3.3p222
5662

5763
BUNDLED WITH
58-
1.14.3
64+
1.16.1

0 commit comments

Comments
 (0)