Skip to content

Commit 78b7432

Browse files
authored
Merge pull request #56 from BenJetson/develop
Release v0.1 Projects
2 parents ef81b32 + ba7e601 commit 78b7432

File tree

129 files changed

+4332
-1757
lines changed

Some content is hidden

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

129 files changed

+4332
-1757
lines changed

.bundle/config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
BUNDLE_PATH: "vendor/bundle"

.github/workflows/front-matter.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: Front Matter Validation
5+
6+
# Controls when the action will run. Triggers the workflow on push or pull request
7+
# events but only for the master branch
8+
on:
9+
push:
10+
branches:
11+
- master
12+
- develop
13+
pull_request:
14+
branches:
15+
- master
16+
- develop
17+
18+
jobs:
19+
validate:
20+
21+
runs-on: ubuntu-latest
22+
23+
steps:
24+
- uses: actions/checkout@v2
25+
- name: Set up Python 3.8
26+
uses: actions/setup-python@v1
27+
with:
28+
python-version: 3.8
29+
- name: Install Python dependencies
30+
run: |
31+
python -m pip install --upgrade pip
32+
pip install -r requirements.txt
33+
- name: TEST - Projects Front Matter Validation
34+
run: ./scripts/test_project_frontmatter.py

.github/workflows/jekyll.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
2+
name: Jekyll Build
3+
4+
# Controls when the action will run. Triggers the workflow on push or pull request
5+
# events but only for the master branch
6+
on:
7+
push:
8+
branches:
9+
- master
10+
- develop
11+
pull_request:
12+
branches:
13+
- master
14+
- develop
15+
16+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17+
jobs:
18+
# This workflow contains a single job called "build"
19+
build:
20+
# The type of runner that the job will run on
21+
runs-on: ubuntu-latest
22+
23+
# Steps represent a sequence of tasks that will be executed as part of the job
24+
steps:
25+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26+
- uses: actions/checkout@v2
27+
28+
- name: Setup Ruby for use with actions
29+
uses: actions/[email protected]
30+
with:
31+
# Version range or exact version of a Ruby version to use.
32+
version: '2.5' # optional, default is >= 2.4
33+
34+
- uses: actions/cache@v1
35+
with:
36+
path: vendor/bundle
37+
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
38+
restore-keys: |
39+
${{ runner.os }}-gems-
40+
41+
- name: Bundle install
42+
run: |
43+
bundle config path vendor/bundle
44+
bundle install --jobs 4 --retry 3
45+
46+
- name: Jekyll Build
47+
run: ./scripts/build.sh

.gitignore

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
.bundle
2-
.bundle/*
3-
vendor
4-
vendor/*
5-
Gemfile.lock
1+
/vendor
62
_site
73
.sass-cache
84
.jekyll-metadata
9-
5+
_config_local.yml
6+
/.vscode

404.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
layout: default
3+
title: 404
34
---
45
<div class="container text-center">
56
<h1>404</h1>

Gemfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
source "https://rubygems.org"
22

3-
github-pages
4-
jekyll-octicons
3+
gem 'github-pages'
4+
gem 'jekyll-octicons'
5+
gem 'jekyll-admin'

Gemfile.lock

+278
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,278 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (6.0.2.2)
5+
concurrent-ruby (~> 1.0, >= 1.0.2)
6+
i18n (>= 0.7, < 2)
7+
minitest (~> 5.1)
8+
tzinfo (~> 1.1)
9+
zeitwerk (~> 2.2)
10+
addressable (2.7.0)
11+
public_suffix (>= 2.0.2, < 5.0)
12+
backports (3.17.0)
13+
coffee-script (2.4.1)
14+
coffee-script-source
15+
execjs
16+
coffee-script-source (1.11.1)
17+
colorator (1.1.0)
18+
commonmarker (0.17.13)
19+
ruby-enum (~> 0.5)
20+
concurrent-ruby (1.1.6)
21+
dnsruby (1.61.3)
22+
addressable (~> 2.5)
23+
em-websocket (0.5.1)
24+
eventmachine (>= 0.12.9)
25+
http_parser.rb (~> 0.6.0)
26+
ethon (0.12.0)
27+
ffi (>= 1.3.0)
28+
eventmachine (1.2.7)
29+
execjs (2.7.0)
30+
faraday (1.0.1)
31+
multipart-post (>= 1.2, < 3)
32+
ffi (1.12.2)
33+
forwardable-extended (2.6.0)
34+
gemoji (3.0.1)
35+
github-pages (204)
36+
github-pages-health-check (= 1.16.1)
37+
jekyll (= 3.8.5)
38+
jekyll-avatar (= 0.7.0)
39+
jekyll-coffeescript (= 1.1.1)
40+
jekyll-commonmark-ghpages (= 0.1.6)
41+
jekyll-default-layout (= 0.1.4)
42+
jekyll-feed (= 0.13.0)
43+
jekyll-gist (= 1.5.0)
44+
jekyll-github-metadata (= 2.13.0)
45+
jekyll-mentions (= 1.5.1)
46+
jekyll-optional-front-matter (= 0.3.2)
47+
jekyll-paginate (= 1.1.0)
48+
jekyll-readme-index (= 0.3.0)
49+
jekyll-redirect-from (= 0.15.0)
50+
jekyll-relative-links (= 0.6.1)
51+
jekyll-remote-theme (= 0.4.1)
52+
jekyll-sass-converter (= 1.5.2)
53+
jekyll-seo-tag (= 2.6.1)
54+
jekyll-sitemap (= 1.4.0)
55+
jekyll-swiss (= 1.0.0)
56+
jekyll-theme-architect (= 0.1.1)
57+
jekyll-theme-cayman (= 0.1.1)
58+
jekyll-theme-dinky (= 0.1.1)
59+
jekyll-theme-hacker (= 0.1.1)
60+
jekyll-theme-leap-day (= 0.1.1)
61+
jekyll-theme-merlot (= 0.1.1)
62+
jekyll-theme-midnight (= 0.1.1)
63+
jekyll-theme-minimal (= 0.1.1)
64+
jekyll-theme-modernist (= 0.1.1)
65+
jekyll-theme-primer (= 0.5.4)
66+
jekyll-theme-slate (= 0.1.1)
67+
jekyll-theme-tactile (= 0.1.1)
68+
jekyll-theme-time-machine (= 0.1.1)
69+
jekyll-titles-from-headings (= 0.5.3)
70+
jemoji (= 0.11.1)
71+
kramdown (= 1.17.0)
72+
liquid (= 4.0.3)
73+
mercenary (~> 0.3)
74+
minima (= 2.5.1)
75+
nokogiri (>= 1.10.4, < 2.0)
76+
rouge (= 3.13.0)
77+
terminal-table (~> 1.4)
78+
github-pages-health-check (1.16.1)
79+
addressable (~> 2.3)
80+
dnsruby (~> 1.60)
81+
octokit (~> 4.0)
82+
public_suffix (~> 3.0)
83+
typhoeus (~> 1.3)
84+
html-pipeline (2.12.3)
85+
activesupport (>= 2)
86+
nokogiri (>= 1.4)
87+
http_parser.rb (0.6.0)
88+
i18n (0.9.5)
89+
concurrent-ruby (~> 1.0)
90+
jekyll (3.8.5)
91+
addressable (~> 2.4)
92+
colorator (~> 1.0)
93+
em-websocket (~> 0.5)
94+
i18n (~> 0.7)
95+
jekyll-sass-converter (~> 1.0)
96+
jekyll-watch (~> 2.0)
97+
kramdown (~> 1.14)
98+
liquid (~> 4.0)
99+
mercenary (~> 0.3.3)
100+
pathutil (~> 0.9)
101+
rouge (>= 1.7, < 4)
102+
safe_yaml (~> 1.0)
103+
jekyll-admin (0.10.1)
104+
jekyll (>= 3.7, < 5.0)
105+
sinatra (~> 1.4)
106+
sinatra-contrib (~> 1.4)
107+
jekyll-avatar (0.7.0)
108+
jekyll (>= 3.0, < 5.0)
109+
jekyll-coffeescript (1.1.1)
110+
coffee-script (~> 2.2)
111+
coffee-script-source (~> 1.11.1)
112+
jekyll-commonmark (1.3.1)
113+
commonmarker (~> 0.14)
114+
jekyll (>= 3.7, < 5.0)
115+
jekyll-commonmark-ghpages (0.1.6)
116+
commonmarker (~> 0.17.6)
117+
jekyll-commonmark (~> 1.2)
118+
rouge (>= 2.0, < 4.0)
119+
jekyll-default-layout (0.1.4)
120+
jekyll (~> 3.0)
121+
jekyll-feed (0.13.0)
122+
jekyll (>= 3.7, < 5.0)
123+
jekyll-gist (1.5.0)
124+
octokit (~> 4.2)
125+
jekyll-github-metadata (2.13.0)
126+
jekyll (>= 3.4, < 5.0)
127+
octokit (~> 4.0, != 4.4.0)
128+
jekyll-mentions (1.5.1)
129+
html-pipeline (~> 2.3)
130+
jekyll (>= 3.7, < 5.0)
131+
jekyll-octicons (9.6.0)
132+
jekyll (>= 3.6, < 5.0)
133+
octicons (= 9.6.0)
134+
jekyll-optional-front-matter (0.3.2)
135+
jekyll (>= 3.0, < 5.0)
136+
jekyll-paginate (1.1.0)
137+
jekyll-readme-index (0.3.0)
138+
jekyll (>= 3.0, < 5.0)
139+
jekyll-redirect-from (0.15.0)
140+
jekyll (>= 3.3, < 5.0)
141+
jekyll-relative-links (0.6.1)
142+
jekyll (>= 3.3, < 5.0)
143+
jekyll-remote-theme (0.4.1)
144+
addressable (~> 2.0)
145+
jekyll (>= 3.5, < 5.0)
146+
rubyzip (>= 1.3.0)
147+
jekyll-sass-converter (1.5.2)
148+
sass (~> 3.4)
149+
jekyll-seo-tag (2.6.1)
150+
jekyll (>= 3.3, < 5.0)
151+
jekyll-sitemap (1.4.0)
152+
jekyll (>= 3.7, < 5.0)
153+
jekyll-swiss (1.0.0)
154+
jekyll-theme-architect (0.1.1)
155+
jekyll (~> 3.5)
156+
jekyll-seo-tag (~> 2.0)
157+
jekyll-theme-cayman (0.1.1)
158+
jekyll (~> 3.5)
159+
jekyll-seo-tag (~> 2.0)
160+
jekyll-theme-dinky (0.1.1)
161+
jekyll (~> 3.5)
162+
jekyll-seo-tag (~> 2.0)
163+
jekyll-theme-hacker (0.1.1)
164+
jekyll (~> 3.5)
165+
jekyll-seo-tag (~> 2.0)
166+
jekyll-theme-leap-day (0.1.1)
167+
jekyll (~> 3.5)
168+
jekyll-seo-tag (~> 2.0)
169+
jekyll-theme-merlot (0.1.1)
170+
jekyll (~> 3.5)
171+
jekyll-seo-tag (~> 2.0)
172+
jekyll-theme-midnight (0.1.1)
173+
jekyll (~> 3.5)
174+
jekyll-seo-tag (~> 2.0)
175+
jekyll-theme-minimal (0.1.1)
176+
jekyll (~> 3.5)
177+
jekyll-seo-tag (~> 2.0)
178+
jekyll-theme-modernist (0.1.1)
179+
jekyll (~> 3.5)
180+
jekyll-seo-tag (~> 2.0)
181+
jekyll-theme-primer (0.5.4)
182+
jekyll (> 3.5, < 5.0)
183+
jekyll-github-metadata (~> 2.9)
184+
jekyll-seo-tag (~> 2.0)
185+
jekyll-theme-slate (0.1.1)
186+
jekyll (~> 3.5)
187+
jekyll-seo-tag (~> 2.0)
188+
jekyll-theme-tactile (0.1.1)
189+
jekyll (~> 3.5)
190+
jekyll-seo-tag (~> 2.0)
191+
jekyll-theme-time-machine (0.1.1)
192+
jekyll (~> 3.5)
193+
jekyll-seo-tag (~> 2.0)
194+
jekyll-titles-from-headings (0.5.3)
195+
jekyll (>= 3.3, < 5.0)
196+
jekyll-watch (2.2.1)
197+
listen (~> 3.0)
198+
jemoji (0.11.1)
199+
gemoji (~> 3.0)
200+
html-pipeline (~> 2.2)
201+
jekyll (>= 3.0, < 5.0)
202+
kramdown (1.17.0)
203+
liquid (4.0.3)
204+
listen (3.2.1)
205+
rb-fsevent (~> 0.10, >= 0.10.3)
206+
rb-inotify (~> 0.9, >= 0.9.10)
207+
mercenary (0.3.6)
208+
mini_portile2 (2.4.0)
209+
minima (2.5.1)
210+
jekyll (>= 3.5, < 5.0)
211+
jekyll-feed (~> 0.9)
212+
jekyll-seo-tag (~> 2.1)
213+
minitest (5.14.0)
214+
multi_json (1.14.1)
215+
multipart-post (2.1.1)
216+
nokogiri (1.10.9)
217+
mini_portile2 (~> 2.4.0)
218+
octicons (9.6.0)
219+
nokogiri (>= 1.6.3.1)
220+
octokit (4.18.0)
221+
faraday (>= 0.9)
222+
sawyer (~> 0.8.0, >= 0.5.3)
223+
pathutil (0.16.2)
224+
forwardable-extended (~> 2.6)
225+
public_suffix (3.1.1)
226+
rack (1.6.13)
227+
rack-protection (1.5.5)
228+
rack
229+
rack-test (1.1.0)
230+
rack (>= 1.0, < 3)
231+
rb-fsevent (0.10.3)
232+
rb-inotify (0.10.1)
233+
ffi (~> 1.0)
234+
rouge (3.13.0)
235+
ruby-enum (0.8.0)
236+
i18n
237+
rubyzip (2.3.0)
238+
safe_yaml (1.0.5)
239+
sass (3.7.4)
240+
sass-listen (~> 4.0.0)
241+
sass-listen (4.0.0)
242+
rb-fsevent (~> 0.9, >= 0.9.4)
243+
rb-inotify (~> 0.9, >= 0.9.7)
244+
sawyer (0.8.2)
245+
addressable (>= 2.3.5)
246+
faraday (> 0.8, < 2.0)
247+
sinatra (1.4.8)
248+
rack (~> 1.5)
249+
rack-protection (~> 1.4)
250+
tilt (>= 1.3, < 3)
251+
sinatra-contrib (1.4.7)
252+
backports (>= 2.0)
253+
multi_json
254+
rack-protection
255+
rack-test
256+
sinatra (~> 1.4.0)
257+
tilt (>= 1.3, < 3)
258+
terminal-table (1.8.0)
259+
unicode-display_width (~> 1.1, >= 1.1.1)
260+
thread_safe (0.3.6)
261+
tilt (2.0.10)
262+
typhoeus (1.3.1)
263+
ethon (>= 0.9.0)
264+
tzinfo (1.2.6)
265+
thread_safe (~> 0.1)
266+
unicode-display_width (1.7.0)
267+
zeitwerk (2.3.0)
268+
269+
PLATFORMS
270+
ruby
271+
272+
DEPENDENCIES
273+
github-pages
274+
jekyll-admin
275+
jekyll-octicons
276+
277+
BUNDLED WITH
278+
2.1.4

0 commit comments

Comments
 (0)