Skip to content

Commit 1b755c5

Browse files
committed
Add Gemfile for website, containing exact version number for a version of Jekyll that works
1 parent 5892e51 commit 1b755c5

File tree

3 files changed

+106
-0
lines changed

3 files changed

+106
-0
lines changed

Diff for: site/build.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
set -ex
3+
cd jekyll
4+
bundle install
5+
bundle exec jekyll build
6+
cd ..

Diff for: site/jekyll/Gemfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'jekyll', '~>1.5.1'
4+
gem 'jekyll-assets', '~>0.9.2'
5+
gem 'bourbon', '~>3'
6+
7+
# For markdown header cleanup
8+
gem 'sanitize'

Diff for: site/jekyll/Gemfile.lock

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
blankslate (2.1.2.4)
5+
bourbon (3.2.4)
6+
sass (~> 3.2)
7+
thor
8+
classifier (1.3.4)
9+
fast-stemmer (>= 1.0.0)
10+
colorator (0.1)
11+
commander (4.1.6)
12+
highline (~> 1.6.11)
13+
crass (1.0.2)
14+
fast-stemmer (1.0.2)
15+
ffi (1.9.17-x64-mingw32)
16+
highline (1.6.21)
17+
hike (1.2.3)
18+
jekyll (1.5.1)
19+
classifier (~> 1.3)
20+
colorator (~> 0.1)
21+
commander (~> 4.1.3)
22+
liquid (~> 2.5.5)
23+
listen (~> 1.3)
24+
maruku (= 0.7.0)
25+
pygments.rb (~> 0.5.0)
26+
redcarpet (~> 2.3.0)
27+
safe_yaml (~> 1.0)
28+
toml (~> 0.1.0)
29+
jekyll-assets (0.9.2)
30+
jekyll (>= 1.0.0, < 3.0.0)
31+
sass (~> 3.2)
32+
sprockets (~> 2.10)
33+
sprockets-helpers
34+
sprockets-sass
35+
liquid (2.5.5)
36+
listen (1.3.1)
37+
rb-fsevent (>= 0.9.3)
38+
rb-inotify (>= 0.9)
39+
rb-kqueue (>= 0.2)
40+
maruku (0.7.0)
41+
mini_portile2 (2.1.0)
42+
multi_json (1.12.1)
43+
nokogiri (1.7.0.1-x64-mingw32)
44+
mini_portile2 (~> 2.1.0)
45+
nokogumbo (1.4.10)
46+
nokogiri
47+
parslet (1.5.0)
48+
blankslate (~> 2.0)
49+
posix-spawn (0.3.13)
50+
pygments.rb (0.5.4)
51+
posix-spawn (~> 0.3.6)
52+
yajl-ruby (~> 1.1.0)
53+
rack (1.6.5)
54+
rb-fsevent (0.9.8)
55+
rb-inotify (0.9.8)
56+
ffi (>= 0.5.0)
57+
rb-kqueue (0.2.4)
58+
ffi (>= 0.5.0)
59+
redcarpet (2.3.0)
60+
safe_yaml (1.0.4)
61+
sanitize (4.4.0)
62+
crass (~> 1.0.2)
63+
nokogiri (>= 1.4.4)
64+
nokogumbo (~> 1.4.1)
65+
sass (3.4.23)
66+
sprockets (2.12.4)
67+
hike (~> 1.2)
68+
multi_json (~> 1.0)
69+
rack (~> 1.0)
70+
tilt (~> 1.1, != 1.3.0)
71+
sprockets-helpers (1.2.1)
72+
sprockets (>= 2.2)
73+
sprockets-sass (1.3.1)
74+
sprockets (~> 2.0)
75+
tilt (~> 1.1)
76+
thor (0.19.4)
77+
tilt (1.4.1)
78+
toml (0.1.2)
79+
parslet (~> 1.5.0)
80+
yajl-ruby (1.1.0)
81+
82+
PLATFORMS
83+
x64-mingw32
84+
85+
DEPENDENCIES
86+
bourbon (~> 3)
87+
jekyll (~> 1.5.1)
88+
jekyll-assets (~> 0.9.2)
89+
sanitize
90+
91+
BUNDLED WITH
92+
1.14.5

0 commit comments

Comments
 (0)