Sha256: ef8d1b0d7de77f15fd0a9a1a4a11d4a51ed284db50e4038071f5b58666ecbfe4
Contents?: true
Size: 555 Bytes
Versions: 1
Compression:
Stored size: 555 Bytes
Contents
require 'IISVersion' class IIS def self.server if(IISVersion.current_version =~ /^6/) require 'IIS6' version = IIS6.new else # Temp require 'IIS6' version = IIS6.new end return version end ### Will be executed on the local box, might be able to refactor 'server' out. def deploy(server, location, deployment) IIS.server.deploy(server, location, deployment) end def set_extra_header(header, deployment) IIS.server.set_extra_header header,deployment end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dolphindeploy-0.0.1 | lib/IIS/IIS.rb |