ruby 2.2.4
Closes Homebrew/homebrew#47071. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
parent
914796de1a
commit
8983805aa3
1 changed files with 4 additions and 5 deletions
|
@ -1,8 +1,8 @@
|
||||||
class Ruby < Formula
|
class Ruby < Formula
|
||||||
desc "Powerful, clean, object-oriented scripting language"
|
desc "Powerful, clean, object-oriented scripting language"
|
||||||
homepage "https://www.ruby-lang.org/"
|
homepage "https://www.ruby-lang.org/"
|
||||||
url "https://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.3.tar.bz2"
|
url "https://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.4.tar.bz2"
|
||||||
sha256 "c745cb98b29127d7f19f1bf9e0a63c384736f4d303b83c4f4bda3c2ee3c5e41f"
|
sha256 "31203696adbfdda6f2874a2de31f7c5a1f3bcb6628f4d1a241de21b158cd5c76"
|
||||||
|
|
||||||
bottle do
|
bottle do
|
||||||
revision 1
|
revision 1
|
||||||
|
@ -172,8 +172,7 @@ class Ruby < Formula
|
||||||
end
|
end
|
||||||
|
|
||||||
test do
|
test do
|
||||||
output = `#{bin}/ruby -e "puts 'hello'"`
|
output = shell_output("#{bin}/ruby -e \"puts 'hello'\"")
|
||||||
assert_equal "hello\n", output
|
assert_match "hello\n", output
|
||||||
assert_equal 0, $?.exitstatus
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue