Sha256: 68dde73cfb3a5fe7028326569786a54226fbb42a9fdc64bb12c9833744f92754
Contents?: true
Size: 345 Bytes
Versions: 8
Compression:
Stored size: 345 Bytes
Contents
module Serverspec module Type class IisAppPool < Base def exists?() @runner.check_iis_app_pool_exists(@name) end def has_dotnet_version?(dotnet) @runner.check_iis_app_pool_has_dotnet_version(@name, dotnet) end def to_s %Q[IIS Application Pool "#{@name}"] end end end end
Version data entries
8 entries across 8 versions & 1 rubygems