Skip to content
This repository was archived by the owner on Sep 30, 2025. It is now read-only.
Closed
Changes from 2 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
6 changes: 3 additions & 3 deletions Formula/portable-ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
class PortableRuby < PortableFormula
desc "Powerful, clean, object-oriented scripting language"
homepage "https://www.ruby-lang.org/"
url "https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.7.tar.gz"
sha256 "9c37c3b12288c7aec20ca121ce76845be5bb5d77662a24919651aaf1d12c8628"
url "https://cache.ruby-lang.org/pub/ruby/3.4/ruby-3.4.2.tar.gz"
sha256 "41328ac21f2bfdd7de6b3565ef4f0dd7543354d37e96f157a1552a6bd0eb364b"
license "Ruby"

# This regex restricts matching to versions other than X.Y.0.
Expand Down Expand Up @@ -164,7 +164,7 @@ def install
shell_output("#{ruby} -rzlib -e 'puts Zlib.crc32(\"test\")'").chomp
assert_equal " \t\n`><=;|&{(",
shell_output("#{ruby} -rreadline -e 'puts Readline.basic_word_break_characters'").chomp
assert_equal '{"a"=>"b"}',
assert_equal '{"a" => "b"}',
shell_output("#{ruby} -ryaml -e 'puts YAML.load(\"a: b\")'").chomp
assert_equal "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
shell_output("#{ruby} -ropenssl -e 'puts OpenSSL::Digest::SHA256.hexdigest(\"\")'").chomp
Expand Down
Loading