module Less class Command attr_accessor :source, :destination, :options def initialize options $verbose = options[:debug] @source = options[:source] @destination = (options[:destination] || options[:source]).gsub /\.(less|lss)/, '.css' @options = options end def watch?() @options[:watch] end def compress?() @options[:compress] end def debug?() @options[:debug] end # little function which allows us to # Ctrl-C exit inside the passed block def watch begin yield rescue Interrupt puts exit 0 end end def run! parse(true) unless File.exist? @destination if watch? log "Watching for changes in #@source... Ctrl-C to abort.\n: " # Main watch loop loop do watch { sleep 1 } # File has changed if File.stat( @source ).mtime > File.stat( @destination ).mtime print "Change detected... " # Loop until error is fixed until parse log "Press [return] to continue..." watch { $stdin.gets } end end end else parse end end def parse new = false begin # Create a new Less object with the contents of a file css = Less::Engine.new(File.new(@source)).to_css css = css.delete " \n" if compress? File.open( @destination, "w" ) do |file| file.write css end print "#{new ? '* [Created]' : '* [Updated]'} #{@destination.split('/').last}\n: " if watch? rescue Errno::ENOENT => e abort "#{e}" rescue SyntaxError => e err "#{e}\n", "Parse" rescue MixedUnitsError => e err "`#{e}` you're mixing units together! What do you expect?\n" rescue PathError => e err "`#{e}` was not found.\n", "Path" rescue VariableNameError => e err "`#{e}` is undefined.\n", "Name" rescue MixinNameError => e err "`#{e}` is undefined.\n", "Name" else true end end # Just a logging function to avoid typing '*' def log s = '' print '* ' + s.to_s end def err s = '', type = '' type = type.strip + ' ' unless type.empty? print "! [#{type}Error] #{s}" end end end