Skip to content

Commit b4dff50

Browse files
committed
first commit
0 parents  commit b4dff50

File tree

131 files changed

+11513
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+11513
-0
lines changed

.gitignore

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
_site/
2+
.sass-cache/
3+
.bundle/
4+
5+
# Windows image file caches
6+
Thumbs.db
7+
ehthumbs.db
8+
9+
# Folder config file
10+
Desktop.ini
11+
12+
# Recycle Bin used on file shares
13+
$RECYCLE.BIN/
14+
15+
# Windows Installer files
16+
*.cab
17+
*.msi
18+
*.msm
19+
*.msp
20+
21+
# Windows shortcuts
22+
*.lnk
23+
24+
# =========================
25+
# Operating System Files
26+
# =========================
27+
28+
# OSX
29+
# =========================
30+
31+
.DS_Store
32+
.AppleDouble
33+
.LSOverride
34+
35+
# Thumbnails
36+
._*
37+
38+
# Files that might appear in the root of a volume
39+
.DocumentRevisions-V100
40+
.fseventsd
41+
.Spotlight-V100
42+
.TemporaryItems
43+
.Trashes
44+
.VolumeIcon.icns
45+
46+
# Directories potentially created on remote AFP share
47+
.AppleDB
48+
.AppleDesktop
49+
Network Trash Folder
50+
Temporary Items
51+
.apdisk

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.3.1

Gemfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# If you have OpenSSL installed, we recommend updating
2+
# the following line to use "https"
3+
source 'https://rubygems.org'
4+
5+
group :development do
6+
gem 'html-proofer'
7+
gem 'jekyll', '~> 3.0', '>= 3.0.1'
8+
gem 'sass', '~> 3.4', '>= 3.4.20'
9+
gem 'bourbon', '~> 4.2', '>= 4.2.6'
10+
gem 'pygments.rb', '~> 0.6.3'
11+
end

Gemfile.lock

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (5.0.1)
5+
concurrent-ruby (~> 1.0, >= 1.0.2)
6+
i18n (~> 0.7)
7+
minitest (~> 5.1)
8+
tzinfo (~> 1.1)
9+
addressable (2.5.0)
10+
public_suffix (~> 2.0, >= 2.0.2)
11+
bourbon (4.2.7)
12+
sass (~> 3.4)
13+
thor (~> 0.19)
14+
colorator (1.1.0)
15+
colored (1.2)
16+
concurrent-ruby (1.0.4)
17+
ethon (0.10.1)
18+
ffi (>= 1.3.0)
19+
ffi (1.9.17)
20+
forwardable-extended (2.6.0)
21+
html-proofer (3.4.0)
22+
activesupport (>= 4.2, < 6.0)
23+
addressable (~> 2.3)
24+
colored (~> 1.2)
25+
mercenary (~> 0.3.2)
26+
nokogiri (~> 1.5)
27+
parallel (~> 1.3)
28+
typhoeus (~> 0.7)
29+
yell (~> 2.0)
30+
i18n (0.7.0)
31+
jekyll (3.4.0)
32+
addressable (~> 2.4)
33+
colorator (~> 1.0)
34+
jekyll-sass-converter (~> 1.0)
35+
jekyll-watch (~> 1.1)
36+
kramdown (~> 1.3)
37+
liquid (~> 3.0)
38+
mercenary (~> 0.3.3)
39+
pathutil (~> 0.9)
40+
rouge (~> 1.7)
41+
safe_yaml (~> 1.0)
42+
jekyll-sass-converter (1.5.0)
43+
sass (~> 3.4)
44+
jekyll-watch (1.5.0)
45+
listen (~> 3.0, < 3.1)
46+
kramdown (1.13.2)
47+
liquid (3.0.6)
48+
listen (3.0.8)
49+
rb-fsevent (~> 0.9, >= 0.9.4)
50+
rb-inotify (~> 0.9, >= 0.9.7)
51+
mercenary (0.3.6)
52+
mini_portile2 (2.1.0)
53+
minitest (5.10.1)
54+
nokogiri (1.7.0.1)
55+
mini_portile2 (~> 2.1.0)
56+
parallel (1.10.0)
57+
pathutil (0.14.0)
58+
forwardable-extended (~> 2.6)
59+
posix-spawn (0.3.13)
60+
public_suffix (2.0.5)
61+
pygments.rb (0.6.3)
62+
posix-spawn (~> 0.3.6)
63+
yajl-ruby (~> 1.2.0)
64+
rb-fsevent (0.9.8)
65+
rb-inotify (0.9.8)
66+
ffi (>= 0.5.0)
67+
rouge (1.11.1)
68+
safe_yaml (1.0.4)
69+
sass (3.4.23)
70+
thor (0.19.4)
71+
thread_safe (0.3.5)
72+
typhoeus (0.8.0)
73+
ethon (>= 0.8.0)
74+
tzinfo (1.2.2)
75+
thread_safe (~> 0.1)
76+
yajl-ruby (1.2.1)
77+
yell (2.0.7)
78+
79+
PLATFORMS
80+
ruby
81+
82+
DEPENDENCIES
83+
bourbon (~> 4.2, >= 4.2.6)
84+
html-proofer
85+
jekyll (~> 3.0, >= 3.0.1)
86+
pygments.rb (~> 0.6.3)
87+
sass (~> 3.4, >= 3.4.20)
88+
89+
BUNDLED WITH
90+
1.13.6

0 commit comments

Comments
 (0)