Skip to content

Commit 957c6a9

Browse files
Add initial installation files
1 parent 39489f4 commit 957c6a9

File tree

6 files changed

+110
-0
lines changed

6 files changed

+110
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_site

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.5.3

Gemfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
6+
7+
gem "jekyll"
8+
9+
group :jekyll_plugins do
10+
gem "jekyll_patternbot"
11+
end

Gemfile.lock

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.5.2)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
babosa (1.0.2)
7+
color_contrast_calc (0.5.0)
8+
colorator (1.1.0)
9+
concurrent-ruby (1.1.4)
10+
css_parser (1.6.0)
11+
addressable
12+
deep_merge (1.2.1)
13+
em-websocket (0.5.1)
14+
eventmachine (>= 0.12.9)
15+
http_parser.rb (~> 0.6.0)
16+
eventmachine (1.2.7)
17+
ffi (1.10.0)
18+
forwardable-extended (2.6.0)
19+
http_parser.rb (0.6.0)
20+
i18n (0.9.5)
21+
concurrent-ruby (~> 1.0)
22+
indifference (0.0.1)
23+
jekyll (3.8.5)
24+
addressable (~> 2.4)
25+
colorator (~> 1.0)
26+
em-websocket (~> 0.5)
27+
i18n (~> 0.7)
28+
jekyll-sass-converter (~> 1.0)
29+
jekyll-watch (~> 2.0)
30+
kramdown (~> 1.14)
31+
liquid (~> 4.0)
32+
mercenary (~> 0.3.3)
33+
pathutil (~> 0.9)
34+
rouge (>= 1.7, < 4)
35+
safe_yaml (~> 1.0)
36+
jekyll-sass-converter (1.5.2)
37+
sass (~> 3.4)
38+
jekyll-watch (2.1.2)
39+
listen (~> 3.0)
40+
jekyll_patternbot (0.14.0)
41+
babosa
42+
color_contrast_calc
43+
colorator
44+
css_parser
45+
deep_merge
46+
indifference
47+
jekyll (~> 3.8)
48+
unicode_titlecase
49+
kramdown (1.17.0)
50+
liquid (4.0.1)
51+
listen (3.1.5)
52+
rb-fsevent (~> 0.9, >= 0.9.4)
53+
rb-inotify (~> 0.9, >= 0.9.7)
54+
ruby_dep (~> 1.2)
55+
mercenary (0.3.6)
56+
pathutil (0.16.2)
57+
forwardable-extended (~> 2.6)
58+
public_suffix (3.0.3)
59+
rb-fsevent (0.10.3)
60+
rb-inotify (0.10.0)
61+
ffi (~> 1.0)
62+
rouge (3.3.0)
63+
ruby_dep (1.5.0)
64+
safe_yaml (1.0.4)
65+
sass (3.7.3)
66+
sass-listen (~> 4.0.0)
67+
sass-listen (4.0.0)
68+
rb-fsevent (~> 0.9, >= 0.9.4)
69+
rb-inotify (~> 0.9, >= 0.9.7)
70+
unicode_titlecase (0.0.2)
71+
unicode_utils
72+
unicode_utils (1.4.0)
73+
74+
PLATFORMS
75+
ruby
76+
77+
DEPENDENCIES
78+
jekyll
79+
jekyll_patternbot
80+
81+
BUNDLED WITH
82+
1.17.1

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
permalink: pretty
2+
3+
theme: jekyll_patternbot

index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en-ca">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Yay!</title>
6+
</head>
7+
<body>
8+
9+
<h1>It works!</h1>
10+
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)