class Ruboclean::RubocopConfiguration

Contains the config_hash representation of the `.rubocop.yml` file

Public Class Methods

new(config_hash) click to toggle source
# File lib/ruboclean/rubocop_configuration.rb, line 6
def initialize(config_hash)
  @config_hash = config_hash
end

Public Instance Methods

order() click to toggle source
# File lib/ruboclean/rubocop_configuration.rb, line 10
def order
  Ruboclean::Orderer.new(@config_hash).order
end