Add an 'scss' executable that is the same as the 'sass' executable but defaults to the scss syntax.

This commit is contained in:
Chris Eppstein
2011-03-22 18:16:58 -07:00
parent 6c22a79a65
commit 99e6fdf849
4 changed files with 52 additions and 11 deletions

8
bin/scss Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env ruby
# The command line Sass parser.
require File.dirname(__FILE__) + '/../lib/sass'
require 'sass/exec'
opts = Sass::Exec::Scss.new(ARGV)
opts.parse!