Install Compass & Sass on Dreamhost

I would like to switch from Compass and Sass to my Dreamhost web space. Unfortunately, it is not part of the standard stones, so the installation seems more complicated. Does anyone have any experience with installing and running Compass and Sass on Dreamhost?

I would be grateful for any recommendations.

+4
source share
2 answers

I had to deal with a similar problem - installing Sass / Compass on a sharehost share account - but was able to figure out how to do this. I used these instructions to install my own copy of RubyGems (although I'm not quite sure it was necessary). Then I used the following two commands to install sass and compass:

gem install sass gem install compass 

Everything went pretty smoothly.

+12
source

One option is to simply compose your sass ( compass compile ) on your computer first, and then only load CSS, so you don’t really need a compass.

Or if you are in a ruby ​​project, use bundler. He will set gems as part of the project.

If you use Dreamhost VPS (I would recommend it compared to shared hosting), then you also have access to sudo, and you can install it globally by logging in as admin (configure it in the panel).

+2
source

All Articles