Skip to content

bad naming convention for providersΒ #284

@logicminds

Description

@logicminds

Should fix this before it gets out of hand. Why the triple stacked classes?

module Vmpooler
  class PoolManager
    class Provider
      class VSphere

      end
    end
  end
end

I don't understand why someone coded this way. We can fix by using module namespaces instead. However since there is also a pool manager class we also just need to remove that bit too.

Example:

module Vmpooler
    module Provider
      class VSphere

      end
    end
end

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions