module Ruboclean

Ruboclean entry point

Constants

VERSION

Public Class Methods

run(path) click to toggle source
# File lib/ruboclean.rb, line 12
def self.run(path)
  rubocop_configuration_path = RubocopConfigurationPath.new(path)
  rubocop_configuration = rubocop_configuration_path.load
  rubocop_configuration_path.write(rubocop_configuration.order)
end