ManageIQ/polisher

View on GitHub
lib/polisher/cli/conf.rb

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/ruby
# Polisher CLI
#
# Licensed under the MIT license
# Copyright (C) 2015 Red Hat, Inc.
###########################################################

module Polisher
  module CLI
    def self.conf
      @conf ||= {}
    end

    def conf
      CLI.conf
    end
  end # mdoule CLI
end