Sha256: 6541f4cc378d5677743a10612dffabadf0280120905dff3dd82ffb7ab45ccc17
Contents?: true
Size: 1.75 KB
Versions: 1
Compression:
Stored size: 1.75 KB
Contents
# frozen_string_literal: true require "rubycritic/commands/default" require "rubycritic/analysers_runner" require "rubycritic/revision_comparator" require "rubycritic/reporter" require "skunk/cli/commands/base" require "skunk/cli/commands/status_reporter" module Skunk module Cli module Command # Default command runs a critique using RubyCritic and uses # Skunk::Command::StatusReporter to report status class Default < RubyCritic::Command::Default def initialize(options) super @options = options @status_reporter = Skunk::Command::StatusReporter.new(options) end # It generates a report and it returns an instance of # Skunk::Command::StatusReporter # # @return [Skunk::Command::StatusReporter] def execute RubyCritic::Config.formats = [] report(critique) status_reporter end # It connects the Skunk::Command::StatusReporter with the collection # of analysed modules. # # @param [RubyCritic::AnalysedModulesCollection] A collection of analysed modules def report(analysed_modules) status_reporter.analysed_modules = analysed_modules status_reporter.score = analysed_modules.score end # It shares the report using SHARE_URL or https://skunk.fastruby.io. It # will post all results in JSON format and return a status message. # # @param [Skunk::Command::StatusReporter] A status reporter with analysed modules # :reek:FeatureEnvy def share(reporter) sharer = Skunk::Command::StatusSharer.new(@options) sharer.status_reporter = reporter sharer.share end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
skunk-0.5.0 | lib/skunk/cli/commands/default.rb |