# File lib/rhc/commands.rb, line 68
    def self.needs_configuration!(cmd, options, config)
      if not (cmd.class.suppress_wizard? or
              options.noprompt or
              options.help or
              config.has_local_config? or
              config.has_opts_config?)

        RHC::Helpers.warn(
          "You have not yet configured the OpenShift client tools. Please run 'rhc setup'.",
            :stderr => true)
      end
    end