Skip to content

Commit 22c09c9

Browse files
committed
Update README.md
1 parent b20fb26 commit 22c09c9

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

README.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,27 @@
11
# SCSS Compiler
22

3-
A Sublime Text 3 plugin which compiles the selected SCSS to CSS in your document.
3+
A Sublime Text 3 plugin which compiles the selected SCSS to CSS in your document window.
4+
This plugin depends on ruby being installed and the `scss` compiler binary being installed via ruby gems.
45

5-
# Installation
6-
This plugin depends on the 'python-scss' application, which can be installed using PIP.
6+
### Usage
7+
Select the SCSS which you wish to compile, right click and select "Compile selected SCSS to CSS". You may need to wait a few seconds for the compilier to do it's thing, and then your SCSS should then be transformed into CSS!
8+
9+
---
10+
# Installation on Linux & OS X
11+
12+
Open a Terminal window and run the following command:
713
```
8-
pip install scss
14+
sudo gem install scss
915
```
10-
This script also assumes that the `scss` binary is in the following location: `/usr/local/bin`.
16+
This script assumes that the `scss` binary is installed in the following location: `/usr/local/bin`.
17+
18+
# Installation on Windows
1119

12-
# Usage
13-
Select the SCSS which you wish to compile, right click and select "Compile selected SCSS to CSS". You may need to wait a few seconds for Python to do it's thing, and then your SCSS should then be transformed into CSS!
20+
Download and install the [Ruby installer](https://rubyinstaller.org/).
21+
22+
**Ensure the "Add Ruby executables to your PATH" is enabled during the installation process.**
23+
24+
Open an Admin Command or PowerShell window and run the following command:
25+
```
26+
gem install scss
27+
```

0 commit comments

Comments
 (0)