Skip to content

Instantly share code, notes, and snippets.

@kumamotone
Created August 27, 2016 06:51
Show Gist options
  • Save kumamotone/59676c50a3f4469ef0bd7a2a20a249dd to your computer and use it in GitHub Desktop.
Save kumamotone/59676c50a3f4469ef0bd7a2a20a249dd to your computer and use it in GitHub Desktop.
Convert .scss to .sass
Dir::glob("./*.scss").each { |filename|
filename.slice!(".scss")
system("sass-convert #{filename}.scss #{filename}.sass")
system("rm ./#{filename}.scss")
puts ("converted #{filename}.scss to #{filename}.sass")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment