Skip to content

Commit 4b77b82

Browse files
committed
add install steps to readme
1 parent cdb21ba commit 4b77b82

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,21 @@ Your Ruby Butler doesn't reinvent the wheel, but rather composes the already wel
1212

1313
Download the latest production binary for your platform from [releases](https://github.com/RubyElders/ruby-butler/releases) and add to PATH:
1414

15+
### Linux
1516
```bash
16-
# Linux/macOS - download and install to local bin or any other directory in PATH
1717
curl -L https://github.com/RubyElders/ruby-butler/releases/latest/download/rb-linux -o ~/.local/bin/rb && chmod +x ~/.local/bin/rb
1818
```
1919

20+
### macOS
21+
```bash
22+
curl -L https://github.com/RubyElders/ruby-butler/releases/latest/download/rb-macos -o ~/.local/bin/rb && chmod +x ~/.local/bin/rb
23+
```
24+
25+
### Windows
26+
```powershell
27+
Invoke-WebRequest -Uri "https://github.com/RubyElders/ruby-butler/releases/latest/download/rb-windows.exe" -OutFile "$env:USERPROFILE\AppData\Local\Microsoft\WindowsApps\rb.exe"
28+
```
29+
2030
## Quick Start
2131

2232
First, check your Ruby estate (by default checking at `~/.rubies`, see `--help` for more options):

0 commit comments

Comments
 (0)