2006-11-08 11:57:33 -05:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
# The command line Haml parser.
|
|
|
|
|
2007-02-01 01:20:05 -05:00
|
|
|
require File.dirname(__FILE__) + '/../lib/haml'
|
|
|
|
require 'haml/exec'
|
2006-11-08 11:57:33 -05:00
|
|
|
|
2007-02-01 01:20:05 -05:00
|
|
|
opts = Haml::Exec::Haml.new(ARGV)
|
|
|
|
opts.parse!
|