4 Star 1 Fork 0

Gitee 极速下载/ruby-build

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.github
bin
script
mirror
release
test
update-cruby
update-eol
update-jruby
update-openssl
update-truffleruby
update-truffleruby-graalvm
share
test
.gitattributes
.gitignore
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
Makefile
README.md
install.sh
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/rbenv/ruby-build
克隆/下载
update-eol 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
# Adds "warn_unsupported" or "warn_eol" to CRuby definitions based on the
# information from endoflife.date.
set -e
date_to_seconds() {
# BSD date
date -jf '%Y-%m-%d' -v 0H -v 0M -v 0S "$1" '+%s' 2>/dev/null ||
# GNU date
date --date "$1" '+%s'
}
now_seconds="$(date '+%s')"
curl -fsSL https://endoflife.date/api/ruby.json | jq -r '.[] | [.cycle,.eol] | @tsv' | while read -r cycle eol_date; do
eol_seconds="$(date_to_seconds "$eol_date")"
days_to_eol=$(((eol_seconds - now_seconds) / 60 / 60 / 24))
if [ $days_to_eol -lt 0 ]; then
grep -L warn_eol share/ruby-build/"$cycle"[.-]* | grep -ve '-dev$' | \
xargs sed -i.bak -E '/openssl/n; s/ warn_unsupported//; s/(.+)"/\1" warn_eol/'
elif [ $days_to_eol -lt 180 ]; then
grep -L warn_unsupported share/ruby-build/"$cycle"[.-]* | grep -ve '-dev$' | \
xargs sed -i.bak -E '/openssl/n; s/(.+)"/\1" warn_unsupported/'
fi
done
num_updated="$(rm -fv share/ruby-build/*.bak | wc -l)"
printf "definition files updated: %d\n" "$num_updated"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Ruby
1
https://gitee.com/mirrors/ruby-build.git
git@gitee.com:mirrors/ruby-build.git
mirrors
ruby-build
ruby-build
master

搜索帮助