Reputation:
Is there a way to install sass with homebrew? I tried brew install sass
which brought up some errors. I understand I can gem install sass
but for better organization and management, is there a way to use homebrew?
If not, is there some reason it isn't possible or necessary?
Upvotes: 1
Views: 1837
Reputation: 61
brew install --devel sass/sass/sass
And you are good to go.
--devel
stands for development version so you are always on the bleeding edge.
Upvotes: 6