Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a note for macOS users to Contributing to Ransack to make it more friendly. #1511

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all 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
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,16 @@ Syntax:
* Prefer simplicity, readability, and maintainability over terseness.
* Follow the conventions you see used in the code already.

Notes:

* If you are a macOS user ( homebrew ) and you get the following error
```
ld: library 'zstd' not found
```
You need to set the path to zstd in the environment variable library export.
Add the following command to your `.zshrc` .
```
export LIBRARY_PATH=$LIBRARY_PATH:$(brew --prefix zstd)/lib/
```

And in case we didn't emphasize it enough: We love tests!
Loading