-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There is an issue that has been fixed with 0.5.6 that solves problem with MySql 8+ client support. This the change that was introduced and it is backwards compatible brianmario/mysql2#1352
- Loading branch information
Showing
2 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The goal of this Ruby on Rails & React homework assignment is to assess your abi | |
|
||
This repository mocks a CRM in the simplest of terms by demonstrating the one to many relationship of Companies to Deals and visualizng various attributes of each to our users. | ||
|
||
Unfortunately, the current implementation is (intentionally) naive and not working as expected in several ways. | ||
Unfortunately, the current implementation is (intentionally) naive and not working as expected in several ways. | ||
|
||
Your primary task with this homework assignment is to resolve the user stories below. | ||
|
||
|
@@ -32,14 +32,24 @@ Assumptions to make regarding the user story for this service: | |
#### Running the App | ||
- `bin/dev` | ||
|
||
#### Installing the `mysql2` Gem | ||
|
||
If you encounter issues with the `mysql2` gem, ensure that you provide paths to the necessary libraries. Use the following command: | ||
|
||
```bash | ||
gem install mysql2 --version=0.5.6 -- --with-mysql-config=/opt/homebrew/bin/mysql_config --with-openssl-dir=/opt/homebrew/opt/[email protected] --with-opt-lib=/opt/homebrew/lib | ||
``` | ||
|
||
This command specifies the paths for the MySQL configuration and OpenSSL directory, which can resolve common installation problems. | ||
|
||
#### Submission | ||
- Clone the repository | ||
- Setup a new repository with the source code | ||
- Implement solution | ||
- Push your solution to a new branch | ||
- Create a Pull Request within the new repository | ||
- When you're ready, share a link to the Pull Request with us | ||
- When you're ready, share a link to the Pull Request with us | ||
|
||
|
||
## FAQ | ||
#### How will I be evaluated? | ||
|