-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Ruby 3.1 support and enhance code documentation
- Loading branch information
Showing
25 changed files
with
775 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ jobs: | |
strategy: | ||
matrix: | ||
ruby: | ||
- 3.1 | ||
- 3.2 | ||
- 3.3 | ||
- 3.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.2.3 | ||
3.1.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.0.beta12 | ||
0.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,48 @@ | ||
title: Fix specing framework | ||
title: "Fix: Happy Path to Ruby Testing" | ||
author: | ||
name: Cyril Kato | ||
url: "https://github.com/cyril" | ||
|
||
description: > | ||
Fix is a modern Ruby testing framework built around a key architectural principle: | ||
the complete separation between specifications and tests. It allows you to write | ||
pure specification documents that define expected behaviors, and then independently | ||
challenge any implementation against these specifications. | ||
remote_theme: jekyll/minima | ||
plugins: | ||
- jekyll-feed | ||
- jekyll-remote-theme | ||
- jekyll-sitemap | ||
- jekyll-seo-tag | ||
|
||
minima: | ||
skin: auto | ||
social_links: | ||
- { platform: github, user_url: "https://github.com/fixrb/fix" } | ||
- { platform: x, user_url: "https://x.com/fix_rb" } | ||
- { platform: github, user_url: "https://github.com/fixrb/fix" } | ||
- { platform: x, user_url: "https://x.com/fix_rb" } | ||
- { platform: bsky, user_url: "https://bsky.app/profile/fixrb.dev" } | ||
- { platform: rss, user_url: "/feed.xml" } | ||
|
||
# Feed configuration | ||
feed: | ||
icon: /favicon.png | ||
logo: /favicon.png | ||
posts_limit: 100 | ||
|
||
# SEO | ||
twitter: | ||
username: fix_rb | ||
card: summary | ||
|
||
social: | ||
name: Fix Framework | ||
links: | ||
- https://github.com/fixrb/fix | ||
- https://x.com/fix_rb | ||
- https://bsky.app/profile/fixrb.dev | ||
|
||
# GitHub Pages specific | ||
github: | ||
is_project_page: true | ||
repository_url: "https://github.com/fixrb/fix" |
Oops, something went wrong.