sass-site/source/install.html.haml

140 lines
4.9 KiB
Plaintext
Raw Normal View History

2013-10-09 12:30:53 +02:00
---
2015-04-02 01:51:37 +02:00
title: Install Sass
2013-10-09 12:30:53 +02:00
---
2015-04-02 01:51:37 +02:00
%h2 There are a couple of ways to start using Sass:
2013-10-12 20:25:16 +02:00
%ol.list-columns
2013-10-12 17:57:34 +02:00
%li.gui-application
2013-10-12 23:39:55 +02:00
%h3 Applications
%p= image_tag "illustrations/mouse.svg", class: "header-image", height: "160", alt: "Mouse"
2013-10-12 23:39:55 +02:00
%p
There are a good many applications that will get you up and running
2015-04-02 01:51:37 +02:00
with Sass in a few minutes for Mac, Windows, and Linux. You can download
2013-10-12 23:39:55 +02:00
most of the applications for free but a few of them are paid apps
<small>(and totally worth it)</small>.
2013-10-09 12:30:53 +02:00
2013-10-12 23:39:55 +02:00
%ul.list-feature
2013-10-11 22:06:20 +02:00
%li
2013-10-12 17:57:34 +02:00
= link_to "CodeKit", "http://incident57.com/codekit/"
%span.info (Paid)
2013-10-12 17:57:34 +02:00
%span.mac-icon
%li
= link_to "Compass.app", "http://compass.handlino.com/"
%span.info (Paid, Open Source)
2013-10-12 17:57:34 +02:00
%span.mac-icon
%span.windows-icon
%span.linux-icon
%li
= link_to "Hammer", "http://hammerformac.com/"
%span.info (Paid)
%span.mac-icon
2013-10-12 17:57:34 +02:00
%li
= link_to "Koala", "http://koala-app.com/"
%span.info (Open Source)
2013-10-12 17:57:34 +02:00
%span.mac-icon
%span.windows-icon
%span.linux-icon
2013-10-11 22:06:20 +02:00
%li
2013-10-12 17:57:34 +02:00
= link_to "LiveReload", "http://livereload.com/"
%span.info (Paid, Open Source)
2013-10-12 17:57:34 +02:00
%span.mac-icon
%span.windows-icon
%li
= link_to "Mixture", "http://mixture.io/"
%span.info (Free)
%span.mac-icon
%span.windows-icon
2013-10-11 22:06:20 +02:00
%li
= link_to "Prepros", "https://prepros.io/"
%span.info (Paid)
2013-10-12 17:57:34 +02:00
%span.mac-icon
%span.windows-icon
%span.linux-icon
2013-10-11 22:06:20 +02:00
%li
2013-10-12 17:57:34 +02:00
= link_to "Scout", "http://mhs.github.io/scout-app/"
%span.info (Open Source)
2013-10-12 17:57:34 +02:00
%span.mac-icon
%span.windows-icon
2013-10-09 12:30:53 +02:00
2013-10-12 17:57:34 +02:00
%li.command-line-unix
2013-10-12 23:39:55 +02:00
%h3 Command Line
%p= image_tag "illustrations/keyboard.svg", class: "header-image", height: "160", alt: "Keyboard"
2013-10-12 23:39:55 +02:00
%dl#install-ruby-linux
%dt Linux
%dd
If you're using a distribution of Linux, you'll need to install Ruby
first. You can install Ruby through the apt package manager, rbenv, or rvm.
%pre
:preserve
sudo su -c "gem install sass"
2013-10-12 23:39:55 +02:00
%dl#install-ruby-windows
%dt Windows
%dd
2015-04-02 01:51:37 +02:00
Before you start using Sass you will need to install Ruby. The fastest
2013-10-12 23:39:55 +02:00
way to get Ruby on your Windows computer is to use
<a href="http://rubyinstaller.org">Ruby Installer</a>. It's a
2013-10-12 23:39:55 +02:00
single-click installer that will get everything set up for you super
fast.
2013-10-09 12:30:53 +02:00
2013-10-12 23:39:55 +02:00
%dd
The installer will also install a Ruby command line
powershell application that will let you use the Ruby libraries.
2013-10-12 23:39:55 +02:00
%dl#install-ruby-mac
%dt Mac
%dd
2015-04-02 01:51:37 +02:00
If you prefer the command line over an application then getting Sass
set up is a fairly quick process. Sass has a Ruby dependency but if
2013-10-12 23:39:55 +02:00
you're using a Mac, congratulations, Ruby comes pre-installed.
%dl
2015-04-02 01:51:37 +02:00
%dt Install Sass
2013-10-12 23:39:55 +02:00
%dd
%p
2015-04-02 01:51:37 +02:00
Here's the quickest way we've found to start using Sass by using
2013-10-12 23:39:55 +02:00
the command line:
2013-10-12 23:39:55 +02:00
%ol
%li
%p
<strong>Open your Terminal or Command Prompt.</strong> On the
2013-10-12 23:39:55 +02:00
Mac the Terminal.app comes installed by default. It's located
in your "Utilities" folder. On Windows, run `cmd`.
2013-10-12 23:39:55 +02:00
%li
%p
2015-04-02 01:51:37 +02:00
<strong>Install Sass.</strong> Ruby uses Gems to manage its
various packages of code like Sass. In your open terminal
2013-10-12 23:39:55 +02:00
window type:
%pre
:preserve
gem install sass
%p
2015-04-02 01:51:37 +02:00
This will install Sass and any dependencies for you. It's pretty
magical. If you get an error message then it's likely you will need to use the <code>sudo</code> command to install the Sass gem. It would look like:
%pre
:preserve
sudo gem install sass
2013-10-12 23:39:55 +02:00
%li
%p
2015-04-02 01:51:37 +02:00
<strong>Double-check.</strong> You should now have Sass
2013-10-12 23:39:55 +02:00
installed, but it never hurts to double-check. In your
terminal application you can type:
%pre
:preserve
sass -v
2013-10-13 01:32:01 +02:00
- if data.respond_to?(:version)
2015-04-02 01:51:37 +02:00
%p It should return <code>Sass #{data.version.number} (#{data.version.name})</code>. Congratulations! You've successfully installed Sass.
2013-10-13 01:32:01 +02:00
- else
2015-04-02 01:51:37 +02:00
%p It should return <code>Sass ???</code>. Congratulations! You've successfully installed Sass.
2013-10-12 23:39:55 +02:00
%li
%p
2015-04-02 01:51:37 +02:00
<strong>Go and play.</strong> If you're brand new to Sass
2013-10-12 23:39:55 +02:00
we've set up some resources to help you learn pretty darn
quick.
2015-04-02 01:51:37 +02:00
%p= link_to "Learn More About Sass", "/guide", :class => "button primary"