ruby安裝及webStorm配置SCSS

sass安裝:css

步驟:(window系統)git

一、下載RubyInstaller(v2.4.3),運行安裝,基本直接next安裝,不過有個add to PATH的選項必定要勾選,這樣就不用配置環境變量。github

二、在開始程序中找到Start Command Prompt with Ruby,以下圖web

      vsass

三、打開後命令行輸入:ruby

1 gem install sass

  這時候可能會出現安裝不成功的狀況或者安裝很慢(慢的想打人),由於國內偉大的GFW緣由鏈接不上致使沒法安裝webstorm

  因此就須要替換國內淘寶提供的鏡像,依次輸入以下代碼:post

1 gem sources --remove https://rubygems.org     刪除原來的資源庫位置 
2 gem sources -a https://ruby.taobao.org/       添加新的資源庫位置
3 gem sources -u      更新資源庫    
4 gem sources -l      查看當前資源庫

  除了淘寶的鏡像外再提供幾個經常使用的gem源地址:spa

  http://rubygems.org/    http://gems.github.com    http://gems.rubyforge.org    http://ruby.taobao.org命令行

 

  出現下面紅框中文字後表示成功,這時能夠輸入以下代碼查看版本:

sass -v

 

 

webStorm配置 :

  File-->Settings-->Tools-->File Watchers,點擊右側加號()添加SCSS

   

      

  輸出參數(Arguments):

  --sourcemap表示開啓sourcemap調試。開啓sourcemap調試後,會生成一個後綴名爲.css.map文件。 webstorm是默認開啓sourcemap的,因此能夠不填寫

  --style表示解析後的css是什麼格式,如:--style compressed (我通常用這個)

  有四種取值分別爲:nestedexpandedcompactcompressed

複製代碼
// nested
#main {
  color: #fff;
  background-color: #000; }
  #main p {
    width: 10em; }

.huge {
  font-size: 10em;
  font-weight: bold;
  text-decoration: underline; }

// expanded
#main {
  color: #fff;
  background-color: #000;
}
#main p {
  width: 10em;
}

.huge {
  font-size: 10em;
  font-weight: bold;
  text-decoration: underline;
}

// compact
#main { color: #fff; background-color: #000; }
#main p { width: 10em; }
 
.huge { font-size: 10em; font-weight: bold; text-decoration: underline; }
 
// compressed
#main{color:#fff;background-color:#000}#main p{width:10em}.huge{font-size:10em;font-weight:bold;text-decoration:underline}
複製代碼
相關文章
相關標籤/搜索