Sha256: 13e09a06900ffef6ff36a5e88fdfc29e1a41b87d831bc33e2735766a668b60ea

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true

require 'bundler/setup' # Set up gems listed in the Gemfile.
require 'ostruct'
require 'yaml'
require 'English'

module Massa
  class Analyzier
    attr_reader :verbose
    alias verbose? verbose

    def self.run!(options)
      new(options).run!
    end

    def initialize(verbose: false)
      @verbose = verbose
    end

    def run!
      Massa::Tool.list.each do |tool|
        Massa::CLI.colorize :blue, "➙ #{tool.description}"

        next unless gem_installed?(tool.gem_name, required: tool.required)

        execute(tool)
      end

      Massa::CLI.colorize :green, "~(‾▿‾)~ All good!"
    end

    def gem_installed?(name, required:)
      return true if `gem query -i #{name}`.chomp == 'true'

      Massa::CLI.colorize :yellow, "༼ つ ◕_◕ ༽つ '#{name}' is not installed"

      required ? exit(1) : false
    end

    def execute(tool)
      command_output = ''

      if verbose?
        system(tool.command)
      else
        IO.popen(tool.command, err: [:child, :out]) { |io| command_output = io.read }
      end

      unless $CHILD_STATUS.success?
        Massa::CLI.colorize :red, "¯\\_(ツ)_/¯ #{tool.description} failed:"
        Massa::CLI.colorize :yellow, "$ #{tool.command}"

        puts command_output if command_output.to_s != ''

        exit 1 if tool.required
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
massa-0.0.9 lib/massa/analyzer.rb
massa-0.0.8 lib/massa/analyzer.rb