You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
newsPage="$(curl -fsSL 'https://www.ruby-lang.org/en/news/')"# occasionally, releases don't show up on the Releases page (see https://github.com/ruby/www.ruby-lang.org/blob/master/_data/releases.yml)
15
+
releasesPage="$(curl -fsSL 'https://www.ruby-lang.org/en/downloads/releases/'| grep -A 2 '<td>Ruby')"# very wide grep to cut down on "set -x" output when debugging (should match the one later)
16
+
newsPage="$(curl -fsSL 'https://www.ruby-lang.org/en/news/'| grep 'Released</a>')"# occasionally, releases don't show up on the Releases page (see https://github.com/ruby/www.ruby-lang.org/blob/master/_data/releases.yml)
17
17
# TODO consider parsing https://github.com/ruby/www.ruby-lang.org/blob/master/_data/downloads.yml as well
18
18
19
19
forversionin"${versions[@]}";do
@@ -39,14 +39,14 @@ for version in "${versions[@]}"; do
0 commit comments