Alphabetical order
This commit is contained in:
@@ -49,22 +49,6 @@ class Mrsk::Commander
|
|||||||
@app ||= Mrsk::Commands::App.new(config)
|
@app ||= Mrsk::Commands::App.new(config)
|
||||||
end
|
end
|
||||||
|
|
||||||
def builder
|
|
||||||
@builder ||= Mrsk::Commands::Builder.new(config)
|
|
||||||
end
|
|
||||||
|
|
||||||
def traefik
|
|
||||||
@traefik ||= Mrsk::Commands::Traefik.new(config)
|
|
||||||
end
|
|
||||||
|
|
||||||
def registry
|
|
||||||
@registry ||= Mrsk::Commands::Registry.new(config)
|
|
||||||
end
|
|
||||||
|
|
||||||
def prune
|
|
||||||
@prune ||= Mrsk::Commands::Prune.new(config)
|
|
||||||
end
|
|
||||||
|
|
||||||
def accessory(name)
|
def accessory(name)
|
||||||
Mrsk::Commands::Accessory.new(config, name: name)
|
Mrsk::Commands::Accessory.new(config, name: name)
|
||||||
end
|
end
|
||||||
@@ -73,10 +57,26 @@ class Mrsk::Commander
|
|||||||
@auditor ||= Mrsk::Commands::Auditor.new(config)
|
@auditor ||= Mrsk::Commands::Auditor.new(config)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def builder
|
||||||
|
@builder ||= Mrsk::Commands::Builder.new(config)
|
||||||
|
end
|
||||||
|
|
||||||
def healthcheck
|
def healthcheck
|
||||||
@healthcheck ||= Mrsk::Commands::Healthcheck.new(config)
|
@healthcheck ||= Mrsk::Commands::Healthcheck.new(config)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def prune
|
||||||
|
@prune ||= Mrsk::Commands::Prune.new(config)
|
||||||
|
end
|
||||||
|
|
||||||
|
def registry
|
||||||
|
@registry ||= Mrsk::Commands::Registry.new(config)
|
||||||
|
end
|
||||||
|
|
||||||
|
def traefik
|
||||||
|
@traefik ||= Mrsk::Commands::Traefik.new(config)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
def with_verbosity(level)
|
def with_verbosity(level)
|
||||||
old_level = self.verbosity
|
old_level = self.verbosity
|
||||||
|
|||||||
Reference in New Issue
Block a user