Sha256: 9a97d81f6da1f5fc863e51ac6929a42ab5a6d2166f32f0a190a82caa1721c7ad

Contents?: true

Size: 1.37 KB

Versions: 9

Compression:

Stored size: 1.37 KB

Contents

# encoding: UTF-8
#
# Copyright 2010 Dan Wanek <dan.wanek@gmail.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'date'
require 'logging'

# Main WinRM module entry point
module WinRM
  # Enable logging if it is requested. We do this before
  # anything else so that we can setup the output before
  # any logging occurs.
  if ENV['WINRM_LOG'] && ENV['WINRM_LOG'] != ''
    begin
      Logging.logger.root.level = ENV['WINRM_LOG']
      Logging.logger.root.appenders = Logging.appenders.stderr
    rescue ArgumentError
      # This means that the logging level wasn't valid
      $stderr.puts "Invalid WINRM_LOG level is set: #{ENV['WINRM_LOG']}"
      $stderr.puts ''
      $stderr.puts 'Please use one of the standard log levels: ' \
        'debug, info, warn, or error'
    end
  end
end

require 'winrm/output'
require 'winrm/helpers/iso8601_duration'
require 'winrm/soap_provider'

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
winrm-1.3.5 lib/winrm.rb
winrm-1.3.5.dev lib/winrm.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/winrm-1.3.4/lib/winrm.rb
winrm-1.3.4 lib/winrm.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/winrm-1.3.3/lib/winrm.rb
winrm-1.3.3 lib/winrm.rb
winrm-1.3.2 lib/winrm.rb
winrm-1.3.1 lib/winrm.rb
winrm-1.3.0 lib/winrm.rb