Skip to content

Commit d227b14

Browse files
committed
feat : updated to version 0.5.14 & x86_64 Support
1 parent cd8c189 commit d227b14

File tree

1 file changed

+19
-12
lines changed

1 file changed

+19
-12
lines changed

nuru.rb

+19-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
class Nuru < Formula
22
desc "Nuru programming language brew formula"
33
homepage "https://nuruprogramming.org"
4-
version "0.5.0-alpha"
4+
version "0.5.14"
55

66
if Hardware::CPU.arm?
7-
url "https://github.com/AvicennaJr/Nuru/releases/download/v0.5.0-alpha/nuru_mac_arm64_v0.5.0-alpha.tar.gz"
8-
sha256 "a23f1767310234e4436ba26aef0d92001f00f2cf858559295f10f15329125fb0"
7+
url "https://github.com/AvicennaJr/Nuru/releases/download/v0.5.14/nuru_Darwin_arm64.tar.gz"
8+
sha256 "975d72f6e566a73dfa9ff780a4fcce61f0bf0a51fbec97fa4f3d2dbcac64cee5"
99
else
10-
# !TODO: Change the url to the x86_64 version once it's available
11-
url "https://github.com/AvicennaJr/Nuru/releases/download/v0.5.0-alpha/nuru_mac_arm64_v0.5.0-alpha.tar.gz"
12-
# !TODO: Change the sha256 to the x86_64 version once it's available
13-
sha256 "a23f1767310234e4436ba26aef0d92001f00f2cf858559295f10f15329125fb0"
10+
url "https://github.com/AvicennaJr/Nuru/releases/download/v0.5.14/nuru_Darwin_x86_64.tar.gz"
11+
sha256 "396a68117f1e024506fb37bea9ffa0fcadcec0b0fa75a07928aa7374a43dcbd2"
1412
end
1513

1614
def install
@@ -22,12 +20,21 @@ def install
2220
end
2321

2422
def caveats
25-
if Hardware::CPU.intel?
26-
raise <<~EOS
27-
Nuru support for macOS x86_64 is not available yet. It will be added soon.
28-
You can track the progress on the Nuru Repository README.MD file: https://github.com/AvicennaJr/Nuru
23+
<<~EOS
24+
\e[38;5;208m
25+
█░░ █░█ █▀▀ █░█ ▄▀█   █▄█ ▄▀█   █▄░█ █░█ █▀█ █░█
26+
█▄▄ █▄█ █▄█ █▀█ █▀█   ░█░ █▀█   █░▀█ █▄█ █▀▄ █▄█
27+
28+
by Avicenna | v0.5.14\e[0m
29+
30+
\e[38;5;208mTo get started, run the following command:\e[0m
31+
\e[38;5;208mnuru --help\e[0m
32+
33+
\e[38;5;208mFor more information and documentation, visit: https://nuruprogramming.org/\e[0m
2934
EOS
30-
end
35+
36+
37+
3138
end
3239
end
3340

0 commit comments

Comments
 (0)