Skip to content

Instantly share code, notes, and snippets.

@dgoguerra
Forked from stephanetimmermans/ubuntu-compass-ruby
Last active December 10, 2017 03:17
Show Gist options
  • Save dgoguerra/100d765500512b6d68e3 to your computer and use it in GitHub Desktop.
Save dgoguerra/100d765500512b6d68e3 to your computer and use it in GitHub Desktop.
Install Compass+Ruby on Ubuntu 14.04
#https://gorails.com/setup/ubuntu/14.04
sudo apt-get update
sudo apt-get install -y git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties
sudo apt-get install -y libgdbm-dev libncurses5-dev automake libtool bison libffi-dev
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
echo "source ~/.rvm/scripts/rvm" >> ~/.bashrc
rvm install 2.3.1
rvm use 2.3.1 --default
ruby -v
#http://blog.acrona.com/index.php?post/2014/05/15/Installer-Fondation-et-Compass/sass-sur-Ubuntu-14.04
gem install compass
@WiertD
Copy link

WiertD commented May 17, 2017

I followed thes instructions but running grunt leaves me with:
Warning: LoadError on line ["55"] of /home/wiert/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb: cannot load such file -- sass-globbing

lsb_release -a outputs:
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 14.04.5 LTS
Release: 14.04
Codename: trusty

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment