Actions
Feature #5344
closedEngine: Clean-up un-indented module scoping throughout application.
Description
During the initial Engine work, module namespacing was done without proper indenting to preserve rebase/merge from master. When the engine branch becomes mature, we should properly indent:
module Katello
class MyClass
end
end
turn into:
module Katello
class MyClass
end
end
----
Imported from https://trello.com/c/Nk1qyp5t/245-engine-clean-up-un-indented-module-scoping-throughout-application_
Actions