惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
有赞技术团队
有赞技术团队
H
Help Net Security
V
Visual Studio Blog
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 司徒正美
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
L
LangChain Blog
N
Netflix TechBlog - Medium
罗磊的独立博客
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements

Recent Commits to jekyll:master

fix: update clean command to take account of the keep_files option (#… · jekyll/jekyll@74d7513 docs: add DeployHQ to third-party deployment providers (#9991) · jekyll/jekyll@7697d24 docs: update wsl installation procedure (#9968) · jekyll/jekyll@202df57 fix: Run release-please workflow only in jekyll/jekyll repo (#9969) · jekyll/jekyll@d68f76e feat!: Streamline the release process for Jekyll (#9760) · jekyll/jekyll@5cf05d7 Update history to reflect merge of #9960 [ci skip] · jekyll/jekyll@08c22ee Add GitCMS to resources docs (#9960) · jekyll/jekyll@3ed83f6 Update history to reflect merge of #9954 [ci skip] · jekyll/jekyll@ff0d4dd Update history to reflect merge of #9925 [ci skip] · jekyll/jekyll@baab7bf Allow configuring future metadata for individual collections (#9925) · jekyll/jekyll@f07d4f7 Update history to reflect merge of #9914 [ci skip] · jekyll/jekyll@d0cf179 Add .ruby-lsp to default excludes (#9914) · jekyll/jekyll@3c45d9e Update history to reflect merge of #9920 [ci skip] · jekyll/jekyll@26ec089 Add logger to Gemfile for Ruby 4.0 (#9920) · jekyll/jekyll@7e79e46 Update history to reflect merge of #9923 [ci skip] · jekyll/jekyll@b49aa9b Bump supported versions (#9923) · jekyll/jekyll@ebe567c Update history to reflect merge of #9897 [ci skip] · jekyll/jekyll@4d3db3a Update WDM (0.1.1 → 0.2.0) in the Windows docs (#9897) · jekyll/jekyll@6da6739 Update history to reflect merge of #9912 [ci skip] · jekyll/jekyll@161f654 docs: Update contributor badge in README to include avatar height and… · jekyll/jekyll@e1b5fd6 Update history to reflect merge of #9889 [ci skip] · jekyll/jekyll@2fe6977
build: fix broken CI on newer rubies (#9954) · jekyll/jek...
mattr- · 2026-03-30 · via Recent Commits to jekyll:master
Original file line numberDiff line numberDiff line change

@@ -183,6 +183,7 @@ jekyllized

183183

jekylllayoutconcept

184184

jekyllrb

185185

jekyllthemes

186+

jekyllup

186187

jemoji

187188

jmcglone

188189

johnreilly

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,4 @@

1-

#!/bin/bash

1+

#!/usr/bin/env bash

22

# -----------------------------------------------------------------------------

33

# If you send us a ruby then we use that, if you do not then we test with

44

# whatever we can detect, this way you can run both suites when you test out

Original file line numberDiff line numberDiff line change

@@ -35,16 +35,9 @@ else

3535

fi

3636
3737

# Tests only pass when timezone offset is zero.

38-

TZ=UTC

38+

export TZ=UTC

3939
4040

for ruby in $rubies; do

41-

if [[ "$ruby" == "jruby" ]]

42-

then

43-

testopts=""

44-

else

45-

testopts="--profile"

46-

fi

47-
4841

if [[ $# -lt 1 ]]

4942

then

5043

set -x

@@ -53,6 +46,6 @@ for ruby in $rubies; do

5346

else

5447

set -x

5548

time $ruby -S bundle exec ruby -I test \

56-

"$@" $testops

49+

"$@" $testopts

5750

fi

5851

done

Original file line numberDiff line numberDiff line change

@@ -64,7 +64,7 @@ def render_and_write

6464

assert_equal "All the properties.\n", regular_page["content"]

6565

assert_equal "properties.html", regular_page["name"]

6666
67-

basic_attrs = %w(dir name path url excerpt)

67+

basic_attrs = %w(dir name path url)

6868

attrs = {

6969

"content" => nil,

7070

"dir" => "/",