mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
9 lines
189 B
Ruby
Executable file
9 lines
189 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# The command line Haml parser.
|
|
|
|
$LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
|
|
require 'haml'
|
|
require 'haml/exec'
|
|
|
|
opts = Haml::Exec::Haml.new(ARGV)
|
|
opts.parse!
|