Sha256: 721a381a408df2bd0a59207eb1d5a87dd2f4a2bb55a4de7119b8532d4db801b9

Contents?: true

Size: 476 Bytes

Versions: 1

Compression:

Stored size: 476 Bytes

Contents

# frozen_string_literal: true

require "ruboclean/cli_arguments"
require "ruboclean/orderer"
require "ruboclean/grouper"
require "ruboclean/path_cleanup"
require "ruboclean/runner"
require "ruboclean/to_yaml_converter"
require "ruboclean/version"

# Ruboclean entry point
module Ruboclean
  def self.run_from_cli!(args)
    runner = Runner.new(args)
    print "Using path '#{runner.path}' ... " if runner.verbose?
    runner.run!
    puts "done." if runner.verbose?
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruboclean-0.5.0 lib/ruboclean.rb