method

settings

settings()
public

No documentation available.

# File railties/lib/rails/mongrel_server/commands.rb, line 240
      def settings
        config_keys.inject({}) do |hash, key|
          value = self.instance_variable_get("@#{key}")
          key = 'host' if key == 'address'
          hash[key.to_sym] ||= value
          hash
        end
      end