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