Sha256: ee2075402c8323b82db1b6b732416fc1e1c658382d0515813ca90aaea34a5842

Contents?: true

Size: 1.74 KB

Versions: 8

Compression:

Stored size: 1.74 KB

Contents

require File.join(File.dirname(__FILE__), "util")
require "rubygems"
require "cmdparse"
require "pathname"

module Juicer
  module Command
    # Verifies problem-free-ness of source code (JavaScript and CSS)
    #
    class Verify < CmdParse::Command
      include Juicer::Command::Util

      # Initializes command
      #
      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 = <<-EOF
Uses JsLint (http://www.jslint.com) to check that code adheres to good coding
practices to avoid potential bugs, and protect against introducing bugs by
minifying.
        EOF
      end

      # Execute command
      #
      def execute(args)
        # Need atleast one file
        raise ArgumentError.new('Please provide atleast one input file/pattern') if args.length == 0
        Juicer::Command::Verify.check_all(files(args), @log)
      end

      def self.check_all(files, log = nil)
        log ||= Logger.new($stdio)
        jslint = Juicer::JsLint.new(:bin_path => Juicer.home)
        problems = false

        # Check that JsLint is installed
        raise FileNotFoundError.new("Missing 3rd party library JsLint, install with\njuicer install jslint") if jslint.locate_lib.nil?

        # Verify all files
        files.each do |file|
          log.info "Verifying #{file} with JsLint"
          report = jslint.check(file)

          if report.ok?
            log.info "  OK!"
          else
            problems = true
            log.warn "  Problems detected"
            log.warn "  #{report.errors.join("\n").gsub(/\n/, "\n  ")}\n"
          end
        end

        !problems
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
cjohansen-juicer-0.2.4 lib/juicer/command/verify.rb
cjohansen-juicer-0.2.5 lib/juicer/command/verify.rb
juicer-0.2.6 lib/juicer/command/verify.rb
juicer-0.2.0 lib/juicer/command/verify.rb
juicer-0.2.3 lib/juicer/command/verify.rb
juicer-0.2.5 lib/juicer/command/verify.rb
juicer-0.2.1 lib/juicer/command/verify.rb
juicer-0.2.4 lib/juicer/command/verify.rb