Skip to content

Instantly share code, notes, and snippets.

@tbogin
tbogin / install_compass.md
Last active September 21, 2016 20:29
Compass Gem - getting started

##Compass gem - getting started ###The Compass gem provides an easy way to compile .scss files into .css ####Since browsers currently only read .css files, .scss must be compiled to raw CSS before it can be viewed on a screen

##Install Compass

  1. If you have Ruby on your computer, run $gem install compass anywhere on the command line
  2. That's it!

##Set up a new project with Compass

  1. $compass create directoryName
@sionc
sionc / rails-postgres-backbone-bootstrap-bootswatch
Last active April 6, 2020 17:35
Instructions on creating a new app using Ruby on Rails, Postgresql, Backbone.js, Twitter Boostrap, Bootstwatch
- Check rails version
$ rails -v
- To update rails
$ gem update rails
- Creating a new rails app using postgresql
$ mkdir rails_projects
$ cd rails_projects
$ rails new myapp --database=postgresql