# File lib/juicer/command/verify.rb, line 15 def initialize(log = nil) super('verify', false, true) @log = log || Logger.new($STDIO) self.short_desc = "Verifies that the given JavaScript/CSS file is problem free" self.description = "Uses JsLint (http://www.jslint.com) to check that code adheres to good coding\npractices to avoid potential bugs, and protect against introducing bugs by\nminifying.\n" end