In your command-line run the following commands:
brew doctorbrew update
| module CaseConverter | |
| class Transformations | |
| class << self | |
| def transform(value) | |
| case value | |
| when Array then value.map { |item| transform(item) } | |
| when Hash then value.deep_transform_keys! { |key| transform(key) } | |
| when String then camelize(value) | |
| else value | |
| end |
In your command-line run the following commands:
brew doctorbrew updatetype below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis