dolphindeploy 0.0.2-universal-dotnet

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. data/README.markdown +9 -0
  2. data/TODO +18 -0
  3. data/external/DolphinDeploy.IIS.IIS6.dll +0 -0
  4. data/external/Microsoft.Web.Administration.dll +0 -0
  5. data/external/TinySharpZip.dll +0 -0
  6. data/external/adsutil.vbs +2938 -0
  7. data/external/xunit/HTML.xslt +117 -0
  8. data/external/xunit/NUnitXml.xslt +121 -0
  9. data/external/xunit/xunit.console.exe +0 -0
  10. data/external/xunit/xunit.console.exe.config +21 -0
  11. data/external/xunit/xunit.console.x86.exe +0 -0
  12. data/external/xunit/xunit.console.x86.exe.config +21 -0
  13. data/external/xunit/xunit.dll +0 -0
  14. data/external/xunit/xunit.dll.tdnet +5 -0
  15. data/external/xunit/xunit.extensions.dll +0 -0
  16. data/external/xunit/xunit.extensions.xml +706 -0
  17. data/external/xunit/xunit.gui.exe +0 -0
  18. data/external/xunit/xunit.gui.x86.exe +0 -0
  19. data/external/xunit/xunit.installer.exe +0 -0
  20. data/external/xunit/xunit.runner.msbuild.dll +0 -0
  21. data/external/xunit/xunit.runner.tdnet.dll +0 -0
  22. data/external/xunit/xunit.runner.utility.dll +0 -0
  23. data/external/xunit/xunit.runner.utility.xml +1048 -0
  24. data/external/xunit/xunit.xml +2306 -0
  25. data/lib/IIS/IIS.rb +23 -0
  26. data/lib/IIS/IIS6.rb +165 -0
  27. data/lib/IIS/IIS7.rb +152 -0
  28. data/lib/IIS/IISVersion.rb +7 -0
  29. data/lib/configured_as/mvc_deployment.rb +174 -0
  30. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.5.1.ReSharper.user +45 -0
  31. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/AppPoolControllerTests.cs +39 -0
  32. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj +69 -0
  33. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj.user +6 -0
  34. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Helper.cs +18 -0
  35. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Properties/AssemblyInfo.cs +36 -0
  36. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/WebsiteControllerTests.cs +56 -0
  37. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.dll +0 -0
  38. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb +0 -0
  39. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.dll +0 -0
  40. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.pdb +0 -0
  41. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/test_site/index.htm +9 -0
  42. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.dll +0 -0
  43. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.xml +2306 -0
  44. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache +0 -0
  45. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.csproj.FileListAbsolute.txt +12 -0
  46. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.dll +0 -0
  47. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb +0 -0
  48. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/ResolveAssemblyReference.cache +0 -0
  49. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/test_site/index.htm +9 -0
  50. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.sln +26 -0
  51. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.suo +0 -0
  52. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/AppPoolController.cs +41 -0
  53. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.csproj +56 -0
  54. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/IIS6Manager.cs +77 -0
  55. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/Properties/AssemblyInfo.cs +36 -0
  56. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/WebsiteController.cs +101 -0
  57. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.dll +0 -0
  58. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.pdb +0 -0
  59. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache +0 -0
  60. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.csproj.FileListAbsolute.txt +7 -0
  61. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.dll +0 -0
  62. data/lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.pdb +0 -0
  63. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/BuildScriptCache/1/78fc7364.dat +0 -0
  64. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ModuleIds.xml +4 -0
  65. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/NamedArguments/5/4b9722ad.dat +0 -0
  66. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/PdbInfo/61d4d5326252d9cd7476a391dfbbb2a47481ffa6 +0 -0
  67. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ProjectModel/ProjectModel.dat +0 -0
  68. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/SymbolCache.bin +0 -0
  69. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/TodoCache/1/78fc7364.dat +0 -0
  70. data/lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/WordIndex/1/72ab4678.dat +0 -0
  71. data/lib/deploycommandcreator.rb +34 -0
  72. data/lib/deploymentconfig.rb +15 -0
  73. data/lib/directory_cleanup.rb +16 -0
  74. data/lib/dolphindeploy.rb +12 -0
  75. data/lib/dolphindeploy_rake.rb +36 -0
  76. data/lib/file_manager.rb +30 -0
  77. data/lib/unzip.rb +11 -0
  78. data/spec/IIS/IIS6_spec.rb +24 -0
  79. data/spec/IIS/IIS_spec.rb +18 -0
  80. data/spec/configured_as/mvc_deployment_spec.rb +108 -0
  81. data/spec/deploycommandcreator_spec.rb +169 -0
  82. data/spec/deploymentconfig_spec.rb +202 -0
  83. data/spec/dolphindeploy_spec.rb +13 -0
  84. data/spec/file_manager_spec.rb +22 -0
  85. data/spec/support/spec_helper.rb +17 -0
  86. metadata +222 -0
@@ -0,0 +1,202 @@
1
+ require File.join(File.dirname(__FILE__), 'support', 'spec_helper')
2
+
3
+ describe "Deployment configuration" do
4
+ describe "Loading" do
5
+ let(:base_env) {"environment do
6
+ tester true
7
+ end"}
8
+
9
+ before do
10
+ File.stubs(:exists?).returns(true)
11
+ File.stubs(:read).returns(base_env)
12
+ end
13
+
14
+ it "should execute dsl after being required which modifies properties on the object" do
15
+ require 'deploymentconfig'
16
+
17
+ @deployment = Deployment.load()
18
+ @deployment.environment.tester.should be_true
19
+ end
20
+ end
21
+
22
+ describe "Multiple properties" do
23
+ let(:two_props) {
24
+ "environment do
25
+ env :systest do
26
+ host \"www.test.systest\"
27
+ end
28
+ env :uat do
29
+ host \"www.test.uat\"
30
+ end
31
+ end"}
32
+
33
+ let(:env_with_to_location) {
34
+ "environment do
35
+ env :systest do
36
+ to \"abc\", \"xxx\"
37
+ end
38
+ end"}
39
+
40
+ let(:env_with_two_to_locations) {
41
+ "environment do
42
+ env :systest do
43
+ to \"abc\", \"xxx\"
44
+ to \"xyz\", \"123\"
45
+ end
46
+ end"}
47
+
48
+ before do
49
+ File.stubs(:exists?).returns(true)
50
+ end
51
+
52
+ it "should return correct host for multiple named environments" do
53
+ File.stubs(:read).returns(two_props)
54
+ require 'deploymentconfig'
55
+
56
+ @deployment = Deployment.load()
57
+ @deployment.environment.systest.host.should == "www.test.systest"
58
+ @deployment.environment.uat.host.should == "www.test.uat"
59
+ end
60
+
61
+ it "should return array of dsl variables containing both parameters" do
62
+ File.stubs(:read).returns(env_with_to_location)
63
+ require 'deploymentconfig'
64
+
65
+ @deployment = Deployment.load()
66
+ @deployment.environment.systest.to.should == ['abc', 'xxx']
67
+ end
68
+
69
+ it "should return array concated together when calling same dsl method multiple times" do
70
+ File.stubs(:read).returns(env_with_two_to_locations)
71
+ require 'deploymentconfig'
72
+
73
+ @deployment = Deployment.load()
74
+ @deployment.environment.systest.to.should == ['abc', 'xxx', 'xyz', '123']
75
+ end
76
+ end
77
+
78
+ describe "Configuration with top level properties and sub details" do
79
+ let(:desc) {
80
+ "environment do
81
+ desc \"Deployment 123\"
82
+ setting :test
83
+ env :systest do
84
+ host \"www.test.systest\"
85
+ end
86
+ env :uat do
87
+ host \"www.test.uat\"
88
+ end
89
+ end"}
90
+
91
+ before do
92
+ File.stubs(:exists?).returns(true)
93
+ end
94
+
95
+ it "should return correct host for multiple named environments" do
96
+ File.stubs(:read).returns(desc)
97
+ require 'deploymentconfig'
98
+
99
+ @deployment = Deployment.load()
100
+ @deployment.environment.desc.should == "Deployment 123"
101
+ @deployment.environment.setting.should == :test
102
+ end
103
+ end
104
+
105
+ describe "Before block" do
106
+ let(:before){
107
+ "environment do
108
+ desc \"Deployment 123\"
109
+ setting :test
110
+ env :systest do
111
+ host \"www.test.systest\"
112
+ before do
113
+ value \"xyz\"
114
+ end
115
+ end
116
+ end"}
117
+
118
+ before(:each) do
119
+ File.stubs(:exists?).returns(true)
120
+ File.stubs(:read).returns(before)
121
+ require 'deploymentconfig'
122
+ end
123
+
124
+ it "should return set of keys defined in the before block" do
125
+ @deployment = Deployment.load()
126
+ @deployment.environment[:systest].before[:value].should == 'xyz'
127
+ end
128
+
129
+ it "should support accessing values as properties" do
130
+ @deployment = Deployment.load()
131
+ @deployment.environment[:systest].before.value.should == 'xyz'
132
+ end
133
+ end
134
+
135
+
136
+ describe "Host Headers" do
137
+ let(:single_host_header){
138
+ "environment do
139
+ desc \"Deployment 123\"
140
+ setting :test
141
+ env :systest do
142
+ host \"www.test.systest\"
143
+ after do
144
+ extra_header 'extra.host.header'
145
+ end
146
+ end
147
+ end"}
148
+
149
+ let(:extra_additional_header){
150
+ "environment do
151
+ desc \"Deployment 123\"
152
+ setting :test
153
+ env :systest do
154
+ host \"www.test.systest\"
155
+ after do
156
+ extra_header 'extra.host.header'
157
+ extra_header 'extra2.host.header'
158
+ end
159
+ end
160
+ end"}
161
+
162
+ let(:dynamic_header){
163
+ "environment do
164
+ desc \"Deployment 123\"
165
+ setting :test
166
+ env :systest do
167
+ host \"www.test.systest\"
168
+ after do
169
+ ['extra', 'extra2'].each {|h| extra_header h + '.host.header'}
170
+ end
171
+ end
172
+ end"}
173
+
174
+ before(:each) do
175
+ File.stubs(:exists?).returns(true)
176
+ end
177
+
178
+ it "should support a single additional host header" do
179
+ File.stubs(:read).returns(single_host_header)
180
+ require 'deploymentconfig'
181
+
182
+ @deployment = Deployment.load()
183
+ @deployment.environment[:systest].after.extra_header.should == 'extra.host.header'
184
+ end
185
+
186
+ it "should support multiple additional host header" do
187
+ File.stubs(:read).returns(extra_additional_header)
188
+ require 'deploymentconfig'
189
+
190
+ @deployment = Deployment.load()
191
+ @deployment.environment[:systest].after.extra_header.should == ['extra.host.header', 'extra2.host.header']
192
+ end
193
+
194
+ it "should support dynamically creating additional host header" do
195
+ File.stubs(:read).returns(dynamic_header)
196
+ require 'deploymentconfig'
197
+
198
+ @deployment = Deployment.load()
199
+ @deployment.environment[:systest].after.extra_header.should == ['extra.host.header', 'extra2.host.header']
200
+ end
201
+ end
202
+ end
@@ -0,0 +1,13 @@
1
+ require File.join(File.dirname(__FILE__), 'support', 'spec_helper')
2
+
3
+ describe "Loading Dolphin Deploy" do
4
+ it "should raise exception when RUBY_ENGINE is not IronRuby" do
5
+ Object.send(:remove_const, :RUBY_ENGINE)
6
+ lambda {require 'dolphindeploy'}.should raise_exception
7
+ end
8
+
9
+ it "should load successfully when running as IronRuby" do
10
+ RUBY_ENGINE = 'ironruby'
11
+ require 'dolphindeploy'
12
+ end
13
+ end
@@ -0,0 +1,22 @@
1
+ require File.join(File.dirname(__FILE__), 'support', 'spec_helper')
2
+ require 'file_manager'
3
+
4
+ describe FileManager, "swapping configuration" do
5
+ let(:location) {"test"}
6
+
7
+ before do
8
+ @mvc = FileManager.new
9
+ end
10
+
11
+ it "should copy the web.config to web.original.config before replacing" do
12
+ FileUtils.stubs(:mv).with("#{location}/web.systest.config", "#{location}/web.config")
13
+ FileUtils.expects(:cp).with("#{location}/web.config", "#{location}/web.original.config").once
14
+ @mvc.swap_configs(location, :systest)
15
+ end
16
+
17
+ it "should rename web.config for environment to web.config" do
18
+ FileUtils.stubs(:cp).with("#{location}/web.config", "#{location}/web.original.config")
19
+ FileUtils.expects(:mv).with("#{location}/web.systest.config", "#{location}/web.config").once
20
+ @mvc.swap_configs(location, :systest)
21
+ end
22
+ end
@@ -0,0 +1,17 @@
1
+ @root_dir = File.expand_path(File.join(File.dirname(__FILE__), "../../"))
2
+
3
+ $: << File.join(@root_dir, "lib")
4
+ $: << File.join(@root_dir, "lib/IIS")
5
+ $: << File.join(@root_dir, 'lib/configured_as')
6
+ $: << File.join(@root_dir, "spec")
7
+ $: << File.join(@root_dir, "spec/support")
8
+
9
+ require 'rubygems'
10
+ require 'spec'
11
+ require 'mocha'
12
+ require 'digest'
13
+
14
+
15
+ Spec::Runner.configure do |config|
16
+ config.mock_with :mocha
17
+ end
metadata ADDED
@@ -0,0 +1,222 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dolphindeploy
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 2
10
+ version: 0.0.2
11
+ platform: universal-dotnet
12
+ authors:
13
+ - Ben Hall
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-10-18 00:00:00 +01:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: caesars
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 11
30
+ segments:
31
+ - 0
32
+ - 7
33
+ - 4
34
+ version: 0.7.4
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: rspec
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 15
46
+ segments:
47
+ - 1
48
+ - 2
49
+ - 8
50
+ version: 1.2.8
51
+ type: :development
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: jeweler
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ hash: 7
62
+ segments:
63
+ - 1
64
+ - 4
65
+ - 0
66
+ version: 1.4.0
67
+ type: :development
68
+ version_requirements: *id003
69
+ - !ruby/object:Gem::Dependency
70
+ name: mocha
71
+ prerelease: false
72
+ requirement: &id004 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ hash: 43
78
+ segments:
79
+ - 0
80
+ - 9
81
+ - 8
82
+ version: 0.9.8
83
+ type: :development
84
+ version_requirements: *id004
85
+ description: Dolphin Deploy - Automated deployment for ASP.net websites.
86
+ email: ben@benhall.me.uk
87
+ executables: []
88
+
89
+ extensions: []
90
+
91
+ extra_rdoc_files:
92
+ - README.markdown
93
+ - TODO
94
+ files:
95
+ - README.markdown
96
+ - external/DolphinDeploy.IIS.IIS6.dll
97
+ - external/Microsoft.Web.Administration.dll
98
+ - external/TinySharpZip.dll
99
+ - external/adsutil.vbs
100
+ - external/xunit/HTML.xslt
101
+ - external/xunit/NUnitXml.xslt
102
+ - external/xunit/xunit.console.exe
103
+ - external/xunit/xunit.console.exe.config
104
+ - external/xunit/xunit.console.x86.exe
105
+ - external/xunit/xunit.console.x86.exe.config
106
+ - external/xunit/xunit.dll
107
+ - external/xunit/xunit.dll.tdnet
108
+ - external/xunit/xunit.extensions.dll
109
+ - external/xunit/xunit.extensions.xml
110
+ - external/xunit/xunit.gui.exe
111
+ - external/xunit/xunit.gui.x86.exe
112
+ - external/xunit/xunit.installer.exe
113
+ - external/xunit/xunit.runner.msbuild.dll
114
+ - external/xunit/xunit.runner.tdnet.dll
115
+ - external/xunit/xunit.runner.utility.dll
116
+ - external/xunit/xunit.runner.utility.xml
117
+ - external/xunit/xunit.xml
118
+ - lib/IIS/IIS.rb
119
+ - lib/IIS/IIS6.rb
120
+ - lib/IIS/IIS7.rb
121
+ - lib/IIS/IISVersion.rb
122
+ - lib/configured_as/mvc_deployment.rb
123
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.5.1.ReSharper.user
124
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/AppPoolControllerTests.cs
125
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj
126
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj.user
127
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Helper.cs
128
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Properties/AssemblyInfo.cs
129
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/WebsiteControllerTests.cs
130
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.dll
131
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb
132
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.dll
133
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.pdb
134
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/test_site/index.htm
135
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.dll
136
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.xml
137
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
138
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.csproj.FileListAbsolute.txt
139
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.dll
140
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb
141
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/ResolveAssemblyReference.cache
142
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/test_site/index.htm
143
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.sln
144
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.suo
145
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/AppPoolController.cs
146
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.csproj
147
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/IIS6Manager.cs
148
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/Properties/AssemblyInfo.cs
149
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/WebsiteController.cs
150
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.dll
151
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.pdb
152
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
153
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.csproj.FileListAbsolute.txt
154
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.dll
155
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.pdb
156
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/BuildScriptCache/1/78fc7364.dat
157
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ModuleIds.xml
158
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/NamedArguments/5/4b9722ad.dat
159
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/PdbInfo/61d4d5326252d9cd7476a391dfbbb2a47481ffa6
160
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ProjectModel/ProjectModel.dat
161
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/SymbolCache.bin
162
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/TodoCache/1/78fc7364.dat
163
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/WordIndex/1/72ab4678.dat
164
+ - lib/deploycommandcreator.rb
165
+ - lib/deploymentconfig.rb
166
+ - lib/directory_cleanup.rb
167
+ - lib/dolphindeploy.rb
168
+ - lib/dolphindeploy_rake.rb
169
+ - lib/file_manager.rb
170
+ - lib/unzip.rb
171
+ - TODO
172
+ - spec/configured_as/mvc_deployment_spec.rb
173
+ - spec/deploycommandcreator_spec.rb
174
+ - spec/deploymentconfig_spec.rb
175
+ - spec/dolphindeploy_spec.rb
176
+ - spec/file_manager_spec.rb
177
+ - spec/IIS/IIS6_spec.rb
178
+ - spec/IIS/IIS_spec.rb
179
+ - spec/support/spec_helper.rb
180
+ has_rdoc: true
181
+ homepage: http://github.com/BenHall/dolphindeploy
182
+ licenses: []
183
+
184
+ post_install_message:
185
+ rdoc_options:
186
+ - --charset=UTF-8
187
+ require_paths:
188
+ - lib
189
+ required_ruby_version: !ruby/object:Gem::Requirement
190
+ none: false
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ hash: 3
195
+ segments:
196
+ - 0
197
+ version: "0"
198
+ required_rubygems_version: !ruby/object:Gem::Requirement
199
+ none: false
200
+ requirements:
201
+ - - ">="
202
+ - !ruby/object:Gem::Version
203
+ hash: 3
204
+ segments:
205
+ - 0
206
+ version: "0"
207
+ requirements: []
208
+
209
+ rubyforge_project:
210
+ rubygems_version: 1.3.7
211
+ signing_key:
212
+ specification_version: 3
213
+ summary: Dolphin Deploy - Automated deployment for ASP.net websites
214
+ test_files:
215
+ - spec/configured_as/mvc_deployment_spec.rb
216
+ - spec/deploycommandcreator_spec.rb
217
+ - spec/deploymentconfig_spec.rb
218
+ - spec/dolphindeploy_spec.rb
219
+ - spec/file_manager_spec.rb
220
+ - spec/IIS/IIS6_spec.rb
221
+ - spec/IIS/IIS_spec.rb
222
+ - spec/support/spec_helper.rb