SlideShare uma empresa Scribd logo
1 de 45
Baixar para ler offline
Sass Tooling!
Or How to StaySane When WorkingWith Sass
We are goingto cover:
compiling
linting
debugging
We are notgoingto cover:
syntax
commentblocks
how you should use mixins
the Lostfinale
whether or notthis is alladream
RTFM?
Yeah. Read them. For sure.
Compilation
There are non-Rubycompilers for Sass ( and
).
LibSass node-
sass
Theyare notcovered in this guide because theyare notat
feature paritywith the Rubyimplementation, buttheycan
compile literallyorders of magnitude faster.
Startbycreatinga.ruby-versionfile thatcontains the
version of Rubythatyou are usingfor Sass compilation:
2.1.2
This tells and to change to thatversion of Ruby
when you cd into the directorycontainingthe .ruby-
versionfile.
RVM rbenv
Create aGemfileto specifywhich version of Sass to use:
source'https://rubygems.org'
gem'sass','3.3.13'
Use the version number displayed when you run:
$geminstallsass
Now, once you run bundle installin this directory, all
contributors willbe usingthe same version of Rubyand
Sass.
Using the Sass CLI to compile your sass!
Simplestoption for Sass compilation:
$sass{pathtoyourSass}:{pathtowhereyouwantCSS}
These paths to Sass and CSS can be individualfiles or
entire directories!
You can also setSass to watch for changes:
$sass--watch{pathtoyourSass}:{pathtowhereyouwantCSS}
And you can specifywhich style to compile to:
$sass--watch--stylecompressed{pathtoyourSass}:{pathtowhereyouwantCSS}
Create asassfile to compile your Sass. Putthe command
thatyou've been usingto compile Sass in this file and, to
give yourself proper permissions, run:
$touchsass
$chmodu+rwx./sass
$echo"sass--watch--stylecompressed{pathtoyourSass}:{pathtowhereyouwantCSS}"
Now you can compile your Sass byrunning:
$./sass
Boom.
Create a.gitignorefile to tellGitto ignore the sass-
cache:
.sass-cache
.sass-cache/is an idiot. You don'tneed to version
track it.
Linting
Use to lintyour Sass:scss-lint
$geminstallscss-lint
$scss-lint{pathtoyourSassdir}
Use (Sublime Text) or (Atom) to lint
your Sass as you write it
SublimeLinter Linter
Use to setup awebhook to rejectunlinted
Sass
overcommit
Use .scss-lint.ymlto configure scss-lint:
linters:
PropertySortOrder:
enabled:false
Sourcemaps
In Chrome, open about:flagsand check Enable
Developer Tools experiments
In the devtools settings menu, click the Experiments tab
and check Enable frameworks debuggingsupport
In the devtools settings menu, click the Generaltagand
check Auto-reload generated CSS
Note thatthis mightnotdo anything. If your sourcemap
contains arelative url, Chrome can'thandle it. The Sass
team is wontfixingthis, butthe Chrome team is working
on it. Sometimes itworks though. I don'tknow.
Now run sass with the --sourcemapflagto generate
sourcemaps:
$sass--watch--stylecompressed--sourcemap{pathtoyourSassfilewithyourimports}:{
Open the Sources tab in the devtools, rightclick the
whiteness, click Add Folder to Workspace and selectyour
project's directory
Rightclick your .cssand selectMap to File System
Resource... then selectyour .scssor .sassand follow
the promptto reload the devtools
Sass tooling!
Sass tooling!

Mais conteúdo relacionado

Destaque

Destaque (13)

Tee onnistunut somekampanja sadalla eurolla
Tee onnistunut somekampanja sadalla eurollaTee onnistunut somekampanja sadalla eurolla
Tee onnistunut somekampanja sadalla eurolla
 
medicina
medicinamedicina
medicina
 
Slideshare
SlideshareSlideshare
Slideshare
 
"บริหารคนอย่างรู้ใจในภาวะวิกฤติ" SME Webinar สัมมนาออนไลน์
"บริหารคนอย่างรู้ใจในภาวะวิกฤติ" SME Webinar สัมมนาออนไลน์"บริหารคนอย่างรู้ใจในภาวะวิกฤติ" SME Webinar สัมมนาออนไลน์
"บริหารคนอย่างรู้ใจในภาวะวิกฤติ" SME Webinar สัมมนาออนไลน์
 
Drug Abuse
Drug AbuseDrug Abuse
Drug Abuse
 
17 loại phí hãng tàu thu cho 1 lô hàng
17 loại phí hãng tàu thu cho 1 lô hàng17 loại phí hãng tàu thu cho 1 lô hàng
17 loại phí hãng tàu thu cho 1 lô hàng
 
Xim $%
Xim $%Xim $%
Xim $%
 
Sales contract - Mẫu hợp đồng xuất khẩu linh kiện điện tử bằng tiếng anh
Sales contract - Mẫu hợp đồng xuất khẩu linh kiện điện tử bằng tiếng anhSales contract - Mẫu hợp đồng xuất khẩu linh kiện điện tử bằng tiếng anh
Sales contract - Mẫu hợp đồng xuất khẩu linh kiện điện tử bằng tiếng anh
 
Thủ tục hải quan đối với hàng hóa gia công- Việt Nam IBC
Thủ tục hải quan đối với hàng hóa gia công- Việt Nam IBCThủ tục hải quan đối với hàng hóa gia công- Việt Nam IBC
Thủ tục hải quan đối với hàng hóa gia công- Việt Nam IBC
 
Chemistry hydrogen bonding
Chemistry hydrogen bondingChemistry hydrogen bonding
Chemistry hydrogen bonding
 
Rosmorduc chc
Rosmorduc   chcRosmorduc   chc
Rosmorduc chc
 
Castera pb halternative 4
Castera    pb halternative 4Castera    pb halternative 4
Castera pb halternative 4
 
30 thuật ngữ tiếng anh thường dùng trong xuất nhập khẩu
30 thuật ngữ tiếng anh thường dùng trong xuất nhập khẩu30 thuật ngữ tiếng anh thường dùng trong xuất nhập khẩu
30 thuật ngữ tiếng anh thường dùng trong xuất nhập khẩu
 

Semelhante a Sass tooling!

Dallas Drupal Days 2012 - Introduction to less sass-compass
Dallas Drupal Days 2012  - Introduction to less sass-compassDallas Drupal Days 2012  - Introduction to less sass-compass
Dallas Drupal Days 2012 - Introduction to less sass-compassChris Lee
 
Elegant CSS Design In Drupal: LESS vs Sass
Elegant CSS Design In Drupal: LESS vs SassElegant CSS Design In Drupal: LESS vs Sass
Elegant CSS Design In Drupal: LESS vs SassMediacurrent
 
Bliblidotcom - SASS Introduction
Bliblidotcom - SASS IntroductionBliblidotcom - SASS Introduction
Bliblidotcom - SASS IntroductionIrfan Maulana
 
Fasten RWD Development with Sass
Fasten RWD Development with SassFasten RWD Development with Sass
Fasten RWD Development with SassSven Wolfermann
 
SASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, GreensockSASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, GreensockMarco Pinheiro
 
Authoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & SassAuthoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & Sasschriseppstein
 
Pacific Northwest Drupal Summit: Basic & SASS
Pacific Northwest Drupal Summit: Basic & SASSPacific Northwest Drupal Summit: Basic & SASS
Pacific Northwest Drupal Summit: Basic & SASSSteve Krueger
 
Introducing grunt, npm and sass
Introducing grunt, npm and sassIntroducing grunt, npm and sass
Introducing grunt, npm and sasspriyanka1452
 
CSS with superpowers - SASS!
CSS with superpowers - SASS!CSS with superpowers - SASS!
CSS with superpowers - SASS!fv0
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction SassZeeshan Ahmed
 
Rapid Templating with Serve
Rapid Templating with ServeRapid Templating with Serve
Rapid Templating with ServeNathan Smith
 
Sass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by ShafeeqSass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by ShafeeqDignitasDigital1
 
CSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & CompassCSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & CompassLucien Lee
 
Understanding asset pipeline plugin
Understanding asset pipeline pluginUnderstanding asset pipeline plugin
Understanding asset pipeline pluginRailsCarma
 

Semelhante a Sass tooling! (20)

UNIT 3.ppt
UNIT 3.pptUNIT 3.ppt
UNIT 3.ppt
 
Big Frontends Made Simple
Big Frontends Made SimpleBig Frontends Made Simple
Big Frontends Made Simple
 
Sass installation
Sass installationSass installation
Sass installation
 
Dallas Drupal Days 2012 - Introduction to less sass-compass
Dallas Drupal Days 2012  - Introduction to less sass-compassDallas Drupal Days 2012  - Introduction to less sass-compass
Dallas Drupal Days 2012 - Introduction to less sass-compass
 
Elegant CSS Design In Drupal: LESS vs Sass
Elegant CSS Design In Drupal: LESS vs SassElegant CSS Design In Drupal: LESS vs Sass
Elegant CSS Design In Drupal: LESS vs Sass
 
Bliblidotcom - SASS Introduction
Bliblidotcom - SASS IntroductionBliblidotcom - SASS Introduction
Bliblidotcom - SASS Introduction
 
Fasten RWD Development with Sass
Fasten RWD Development with SassFasten RWD Development with Sass
Fasten RWD Development with Sass
 
SASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, GreensockSASS, Compass, Gulp, Greensock
SASS, Compass, Gulp, Greensock
 
Authoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & SassAuthoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & Sass
 
Sass: Introduction
Sass: IntroductionSass: Introduction
Sass: Introduction
 
Pacific Northwest Drupal Summit: Basic & SASS
Pacific Northwest Drupal Summit: Basic & SASSPacific Northwest Drupal Summit: Basic & SASS
Pacific Northwest Drupal Summit: Basic & SASS
 
Less vs sass
Less vs sassLess vs sass
Less vs sass
 
Introducing grunt, npm and sass
Introducing grunt, npm and sassIntroducing grunt, npm and sass
Introducing grunt, npm and sass
 
CSS with superpowers - SASS!
CSS with superpowers - SASS!CSS with superpowers - SASS!
CSS with superpowers - SASS!
 
Simple introduction Sass
Simple introduction SassSimple introduction Sass
Simple introduction Sass
 
Rapid Templating with Serve
Rapid Templating with ServeRapid Templating with Serve
Rapid Templating with Serve
 
Sass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by ShafeeqSass:-Syntactically Awesome Stylesheet by Shafeeq
Sass:-Syntactically Awesome Stylesheet by Shafeeq
 
CSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & CompassCSS 開發加速指南-Sass & Compass
CSS 開發加速指南-Sass & Compass
 
SASS Preprocessor
SASS PreprocessorSASS Preprocessor
SASS Preprocessor
 
Understanding asset pipeline plugin
Understanding asset pipeline pluginUnderstanding asset pipeline plugin
Understanding asset pipeline plugin
 

Último

Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 

Último (20)

Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 

Sass tooling!

  • 1. Sass Tooling! Or How to StaySane When WorkingWith Sass
  • 2.
  • 3. We are goingto cover: compiling linting debugging
  • 4.
  • 5. We are notgoingto cover: syntax commentblocks how you should use mixins the Lostfinale whether or notthis is alladream
  • 6.
  • 8.
  • 10.
  • 11. There are non-Rubycompilers for Sass ( and ). LibSass node- sass
  • 12. Theyare notcovered in this guide because theyare notat feature paritywith the Rubyimplementation, buttheycan compile literallyorders of magnitude faster.
  • 13.
  • 14. Startbycreatinga.ruby-versionfile thatcontains the version of Rubythatyou are usingfor Sass compilation: 2.1.2 This tells and to change to thatversion of Ruby when you cd into the directorycontainingthe .ruby- versionfile. RVM rbenv
  • 15. Create aGemfileto specifywhich version of Sass to use: source'https://rubygems.org' gem'sass','3.3.13' Use the version number displayed when you run: $geminstallsass Now, once you run bundle installin this directory, all contributors willbe usingthe same version of Rubyand Sass.
  • 17. Simplestoption for Sass compilation: $sass{pathtoyourSass}:{pathtowhereyouwantCSS}
  • 18. These paths to Sass and CSS can be individualfiles or entire directories!
  • 19. You can also setSass to watch for changes: $sass--watch{pathtoyourSass}:{pathtowhereyouwantCSS}
  • 20. And you can specifywhich style to compile to: $sass--watch--stylecompressed{pathtoyourSass}:{pathtowhereyouwantCSS}
  • 21.
  • 22. Create asassfile to compile your Sass. Putthe command thatyou've been usingto compile Sass in this file and, to give yourself proper permissions, run: $touchsass $chmodu+rwx./sass $echo"sass--watch--stylecompressed{pathtoyourSass}:{pathtowhereyouwantCSS}" Now you can compile your Sass byrunning: $./sass Boom.
  • 23. Create a.gitignorefile to tellGitto ignore the sass- cache: .sass-cache .sass-cache/is an idiot. You don'tneed to version track it.
  • 24.
  • 26.
  • 27. Use to lintyour Sass:scss-lint $geminstallscss-lint $scss-lint{pathtoyourSassdir}
  • 28.
  • 29. Use (Sublime Text) or (Atom) to lint your Sass as you write it SublimeLinter Linter
  • 30. Use to setup awebhook to rejectunlinted Sass overcommit
  • 31. Use .scss-lint.ymlto configure scss-lint: linters: PropertySortOrder: enabled:false
  • 33.
  • 34. In Chrome, open about:flagsand check Enable Developer Tools experiments
  • 35.
  • 36. In the devtools settings menu, click the Experiments tab and check Enable frameworks debuggingsupport
  • 37. In the devtools settings menu, click the Generaltagand check Auto-reload generated CSS
  • 38.
  • 39. Note thatthis mightnotdo anything. If your sourcemap contains arelative url, Chrome can'thandle it. The Sass team is wontfixingthis, butthe Chrome team is working on it. Sometimes itworks though. I don'tknow.
  • 40. Now run sass with the --sourcemapflagto generate sourcemaps: $sass--watch--stylecompressed--sourcemap{pathtoyourSassfilewithyourimports}:{
  • 41. Open the Sources tab in the devtools, rightclick the whiteness, click Add Folder to Workspace and selectyour project's directory
  • 42.
  • 43. Rightclick your .cssand selectMap to File System Resource... then selectyour .scssor .sassand follow the promptto reload the devtools