Sha256: 8edcc9c61faa6bf24c323cda0773237c065f4bf01358a45c0c1a307c06654b87
Contents?: true
Size: 1.73 KB
Versions: 1
Compression:
Stored size: 1.73 KB
Contents
require 'site' require 'iis_object' require 'process_model' module IISConfig class AppPool < IISObject def initialize @pipeline_mode = :Classic @runtime_version = :'v2.0' @sites = [] @process_model = ProcessModel.new @enable_32bit_app_on_win64 = false end def name(name = nil) @name = name unless name.nil? @name end def runtime_version(version = nil) @runtime_version = version unless version.nil? @runtime_version end def pipeline_mode(mode = nil) @pipeline_mode = mode unless mode.nil? @pipeline_mode end def enable_32bit_app_on_win64(value = true) @enable_32bit_app_on_win64 = value end def process_model yield @process_model end def site(&block) add_instance(@sites, IISConfig::Site, block) end def sites @sites end def delete %W{DELETE APPPOOL #{@name}} end def add args = [] args << 'ADD' args << 'APPPOOL' args << "/name:#{@name}" args << "/managedRuntimeVersion:#{@runtime_version}" args << "/managedPipelineMode:#{pipeline_mode}" args end def build_commands commands = [] commands << delete if exist? :apppool, @name commands << add @process_model.settings.each do |d| commands << %W{SET CONFIG /section:applicationPools /[name='#{@name}'].processModel.#{d[:key]}:#{d[:value]}} end commands << %W{SET APPPOOL /apppool.name:#{@name} /enable32BitAppOnWin64:#{@enable_32bit_app_on_win64}} @sites.each do |s| commands += s.build_commands @name end commands end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
iisconfig-0.0.1.pre1 | lib/iisconfig/app_pool.rb |