Skip to content

try out frontmatter testing #261

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ ruby "~> 3.0"

gem 'github-pages'

group :jekyll_plugins do
gem 'pry'
gem 'jekyll_frontmatter_tests'
end

group :test do
gem 'jekyll-test'
gem 'colorize'
Expand Down
9 changes: 9 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ GEM
zeitwerk (~> 2.2, >= 2.2.2)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
coderay (1.1.3)
coffee-script (2.4.1)
coffee-script-source
execjs
Expand Down Expand Up @@ -205,6 +206,8 @@ GEM
jekyll (>= 3.3, < 5.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
jekyll_frontmatter_tests (0.1.0)
jekyll (>= 2.0, < 4.0)
jemoji (0.12.0)
gemoji (~> 3.0)
html-pipeline (~> 2.2)
Expand All @@ -218,6 +221,7 @@ GEM
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.3.6)
method_source (1.0.0)
mini_portile2 (2.5.0)
minima (2.5.1)
jekyll (>= 3.5, < 5.0)
Expand All @@ -236,6 +240,9 @@ GEM
parallel (1.20.1)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
pry (0.13.1)
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (3.1.1)
racc (1.5.2)
rainbow (3.0.0)
Expand Down Expand Up @@ -296,6 +303,8 @@ DEPENDENCIES
colorize
github-pages
jekyll-test
jekyll_frontmatter_tests
pry

RUBY VERSION
ruby 3.0.0p0
Expand Down
2 changes: 1 addition & 1 deletion _posts/2008-01-09-testing-in-trac.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: post
title: Testing in Trac
categories:
categories: []
---
<p>
Hurrah, I've just contributed my first code back to the <a href="http://trac.edgewall.org/">Trac</a> project. I've created a workflow for the 0.11 release which adds a simple "testing" state to tickets before they are closed. For the Trac addicts amongst you, it's available at <a href="http://trac-hacks.org/wiki/TestingWorkflow">Trac Hacks</a>. I'm rather proud of it, because it's actually the first workflow hack on the site!
Expand Down
2 changes: 1 addition & 1 deletion _posts/2013-06-04-my-mentoring-journey.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: post
title: "My Mentoring Journey"
date: 2013-06-04 20:03
comments: true
categories:
categories: []
---
Since January, I've worked at the [Open Data Institute](http://www.theodi.org), which has been a really great experience. As well as being a non-profit with a mission to make the world better, which is already a huge win as far as I'm concerned, the organisation also puts a massive emphasis on culture and people. For a small enterprise (less than 20 people), this is amazing, and I've never seen anything quite like it anywhere I've worked.

Expand Down
4 changes: 2 additions & 2 deletions _posts/2015-01-02-the-best-of-2014.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: post
title: The Best of 2014
date: 2015-01-02 17:28
comments: true
categories:
categories: []
---

I've seen a few personal reviews of 2014 around the net, so I thought I'd write one to get back into the writing habit. Here are my favourite things from the last year:
Expand Down Expand Up @@ -72,4 +72,4 @@ Tough competition here, with many other worthy people doing amazing things, but

<iframe width="100%" height="315" src="//www.youtube.com/embed/TLp6Y7YZbRw" frameborder="0" allowfullscreen></iframe>

So, come on 2015, how you going to beat that lot? Bring it.
So, come on 2015, how you going to beat that lot? Bring it.
2 changes: 1 addition & 1 deletion _posts/2017-01-23-the-web-of-truth.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: post
title: The Web Of Truth
date: 2017-01-23 00:00
comments: true
categories:
categories: []
featured_image:
url: /images/batmanslap.jpg
---
Expand Down
10 changes: 10 additions & 0 deletions deploy/tests/schema/_posts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: "String"
categories: "Array"
config:
path: '_posts'
ignore:
- ..
- .
- .DS_Store
optional: []
9 changes: 9 additions & 0 deletions deploy/tests/schema/_projects.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: "String"
config:
path: '_projects'
ignore:
- ..
- .
- .DS_Store
optional: []
13 changes: 13 additions & 0 deletions deploy/tests/schema/_talks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: "String"
host:
url: "String"
name: "String"
# vimeo: "String"
config:
path: '_talks'
ignore:
- ..
- .
- .DS_Store
optional: ["vimeo", "youtube"]