dolphindeploy 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +24 -0
  26. data/lib/IIS/IIS6.rb +145 -0
  27. data/lib/IIS/IIS7.rb +20 -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 +39 -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/config_spec.rb +170 -0
  81. data/spec/configured_as/mvc_deployment_spec.rb +103 -0
  82. data/spec/deploycommandcreator_spec.rb +162 -0
  83. data/spec/dolphindeploy_spec.rb +13 -0
  84. data/spec/file_manager_spec.rb +20 -0
  85. data/spec/support/spec_helper.rb +17 -0
  86. metadata +159 -0
@@ -0,0 +1,162 @@
1
+ require File.join(File.dirname(__FILE__), 'support', 'spec_helper')
2
+ require 'DeployCommandCreator'
3
+
4
+ describe "DeployCommandCreator" do
5
+ def config()
6
+ File.stubs(:read).returns("environment do
7
+ configured_as :mvc
8
+ env :systest do
9
+ host \"Test\"
10
+ to \"server\", \"path\", \"*\"
11
+ to \"server2\", \"path2\", \"*\"
12
+ to \"server2\", \"path2\", \"127.0.0.1\"
13
+ end
14
+ end")
15
+ require 'deploymentconfig'
16
+
17
+ return Deployment.load()
18
+ end
19
+
20
+ before do
21
+ creator = DeployCommandCreator.new()
22
+ @mvc = creator.convert_from_config(config, :systest)
23
+ end
24
+
25
+ it "should create deployment config object based on configuration" do
26
+ @mvc.should_not be_nil
27
+ @mvc.class.should == MvcDeployment
28
+ end
29
+
30
+ it "should set environment variable" do
31
+ @mvc.environment.should == :systest
32
+ end
33
+
34
+ it "should set the host variable" do
35
+ @mvc.host.should == "Test"
36
+ end
37
+
38
+ it "should set the to variable" do
39
+ @mvc.to[0].server.should == "server"
40
+ @mvc.to[0].path.should == "path"
41
+ end
42
+
43
+ it "should set the to variable with both values" do
44
+ @mvc.to[0].server.should == "server"
45
+ @mvc.to[0].path.should == "path"
46
+
47
+ @mvc.to[1].server.should == "server2"
48
+ @mvc.to[1].path.should == "path2"
49
+ end
50
+
51
+ it "should have a default IP address of *" do
52
+ @mvc.to[0].ipaddress.should == "*"
53
+ end
54
+
55
+ it "should have the correct IP address if it has been defined" do
56
+ @mvc.to[2].ipaddress.should == "127.0.0.1"
57
+ end
58
+ end
59
+
60
+ describe "DeployCommandCreator", "overriding default" do
61
+ def config()
62
+ File.stubs(:read).returns("environment do
63
+ configured_as :mvc
64
+ desc \"Testing\"
65
+ env :systest do
66
+ host \"Test\"
67
+ end
68
+ end")
69
+ require 'deploymentconfig'
70
+
71
+ return Deployment.load()
72
+ end
73
+
74
+ before do
75
+ creator = DeployCommandCreator.new()
76
+ @mvc = creator.convert_from_config(config, :systest)
77
+ end
78
+
79
+ it "should have a description of Testing" do
80
+ @mvc.description.should == "Testing"
81
+ end
82
+ end
83
+
84
+ describe "DeployCommandCreator with Before and After blocks" do
85
+ def config()
86
+ File.stubs(:read).returns("environment do
87
+ configured_as :mvc
88
+ env :systest do
89
+ host \"Test\"
90
+ to \"server\", \"path\"
91
+ to \"server2\", \"path2\"
92
+
93
+ before do
94
+ set_value 'xyz'
95
+ set_host 'ABC' #Redefines the value before executing...
96
+ end
97
+
98
+ after do
99
+ set_exec_something 'abc'
100
+ set_port 99 #Redefines the value after executing...
101
+ end
102
+ end
103
+ end")
104
+ require 'deploymentconfig'
105
+
106
+ return Deployment.load()
107
+ end
108
+
109
+ before do
110
+ creator = DeployCommandCreator.new()
111
+ @mvc = creator.convert_from_config(config, :systest)
112
+ end
113
+
114
+ it "should create deployment config object based on configuration" do
115
+ @mvc.should_not be_nil
116
+ @mvc.class.should == MvcDeployment
117
+ end
118
+
119
+ it "should set environment variable" do
120
+ @mvc.environment.should == :systest
121
+ end
122
+
123
+ it "should have a before keys collection containing the method names" do
124
+ @mvc.before.keys.should include :set_value
125
+ end
126
+
127
+ it "should have a list of before blocks to execute" do
128
+ @mvc.before[:set_value].should == 'xyz'
129
+ end
130
+
131
+ it "should have an after keys collection containing the method names" do
132
+ @mvc.after.keys.should include :set_exec_something
133
+ end
134
+
135
+ it "should support multiple calls being specified" do
136
+ @mvc.before.keys.length.should == 2
137
+ end
138
+ end
139
+
140
+ describe "DeployCommandCreator", "supports multiple arguments for method" do
141
+ def config()
142
+ File.stubs(:read).returns("environment do
143
+ configured_as :mvc
144
+ desc \"Testing\"
145
+ env :systest do
146
+ host \"Test\"
147
+ end
148
+ end")
149
+ require 'deploymentconfig'
150
+
151
+ return Deployment.load()
152
+ end
153
+
154
+ before do
155
+ creator = DeployCommandCreator.new()
156
+ @mvc = creator.convert_from_config(config, :systest)
157
+ end
158
+
159
+ it "should have a description of Testing" do
160
+ @mvc.description.should == "Testing"
161
+ end
162
+ 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,20 @@
1
+ require File.join(File.dirname(__FILE__), 'support', 'spec_helper')
2
+ require 'file_manager'
3
+
4
+ describe FileManager, "swapping configuration" do
5
+ before do
6
+ @mvc = FileManager.new
7
+ end
8
+
9
+ it "should make a web.original.config before replacing file" do
10
+ FileUtils.stubs(:mv).with('test/web.systest.config', 'test/web.config')
11
+ FileUtils.expects(:cp).with('test/web.config', 'test/web.original.config').once
12
+ @mvc.swap_configs('test', :systest)
13
+ end
14
+
15
+ it "should swap config for environment to web.config" do
16
+ FileUtils.stubs(:cp).with('test/web.config', 'test/web.original.config')
17
+ FileUtils.expects(:mv).with('test/web.systest.config', 'test/web.config').once
18
+ @mvc.swap_configs('test', :systest)
19
+ end
20
+ 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,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dolphindeploy
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Ben Hall
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-08-16 00:00:00 +01:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Dolphin Deploy - Automated deployment for ASP.net websites.
23
+ email: ben@benhall.me.uk
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - README.markdown
30
+ - TODO
31
+ files:
32
+ - README.markdown
33
+ - external/DolphinDeploy.IIS.IIS6.dll
34
+ - external/Microsoft.Web.Administration.dll
35
+ - external/TinySharpZip.dll
36
+ - external/adsutil.vbs
37
+ - external/xunit/HTML.xslt
38
+ - external/xunit/NUnitXml.xslt
39
+ - external/xunit/xunit.console.exe
40
+ - external/xunit/xunit.console.exe.config
41
+ - external/xunit/xunit.console.x86.exe
42
+ - external/xunit/xunit.console.x86.exe.config
43
+ - external/xunit/xunit.dll
44
+ - external/xunit/xunit.dll.tdnet
45
+ - external/xunit/xunit.extensions.dll
46
+ - external/xunit/xunit.extensions.xml
47
+ - external/xunit/xunit.gui.exe
48
+ - external/xunit/xunit.gui.x86.exe
49
+ - external/xunit/xunit.installer.exe
50
+ - external/xunit/xunit.runner.msbuild.dll
51
+ - external/xunit/xunit.runner.tdnet.dll
52
+ - external/xunit/xunit.runner.utility.dll
53
+ - external/xunit/xunit.runner.utility.xml
54
+ - external/xunit/xunit.xml
55
+ - lib/IIS/IIS.rb
56
+ - lib/IIS/IIS6.rb
57
+ - lib/IIS/IIS7.rb
58
+ - lib/IIS/IISVersion.rb
59
+ - lib/configured_as/mvc_deployment.rb
60
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.5.1.ReSharper.user
61
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/AppPoolControllerTests.cs
62
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj
63
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/DolphinDeploy.IIS.IIS6.Tests.csproj.user
64
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Helper.cs
65
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/Properties/AssemblyInfo.cs
66
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/WebsiteControllerTests.cs
67
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.dll
68
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb
69
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.dll
70
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/DolphinDeploy.IIS.IIS6.pdb
71
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/test_site/index.htm
72
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.dll
73
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/bin/Debug/xunit.xml
74
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
75
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.csproj.FileListAbsolute.txt
76
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.dll
77
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/DolphinDeploy.IIS.IIS6.Tests.pdb
78
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/obj/Debug/ResolveAssemblyReference.cache
79
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.Tests/test_site/index.htm
80
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.sln
81
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.suo
82
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/AppPoolController.cs
83
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6.csproj
84
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/IIS6Manager.cs
85
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/Properties/AssemblyInfo.cs
86
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/WebsiteController.cs
87
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.dll
88
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/bin/Debug/DolphinDeploy.IIS.IIS6.pdb
89
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
90
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.csproj.FileListAbsolute.txt
91
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.dll
92
+ - lib/csharp/DolphinDeploy.IIS.IIS6/DolphinDeploy.IIS.IIS6/obj/Debug/DolphinDeploy.IIS.IIS6.pdb
93
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/BuildScriptCache/1/78fc7364.dat
94
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ModuleIds.xml
95
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/NamedArguments/5/4b9722ad.dat
96
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/PdbInfo/61d4d5326252d9cd7476a391dfbbb2a47481ffa6
97
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/ProjectModel/ProjectModel.dat
98
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/SymbolCache.bin
99
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/TodoCache/1/78fc7364.dat
100
+ - lib/csharp/DolphinDeploy.IIS.IIS6/_ReSharper.DolphinDeploy.IIS.IIS6/WordIndex/1/72ab4678.dat
101
+ - lib/deploycommandcreator.rb
102
+ - lib/deploymentconfig.rb
103
+ - lib/directory_cleanup.rb
104
+ - lib/dolphindeploy.rb
105
+ - lib/dolphindeploy_rake.rb
106
+ - lib/file_manager.rb
107
+ - lib/unzip.rb
108
+ - TODO
109
+ - spec/configured_as/mvc_deployment_spec.rb
110
+ - spec/config_spec.rb
111
+ - spec/deploycommandcreator_spec.rb
112
+ - spec/dolphindeploy_spec.rb
113
+ - spec/file_manager_spec.rb
114
+ - spec/IIS/IIS6_spec.rb
115
+ - spec/IIS/IIS_spec.rb
116
+ - spec/support/spec_helper.rb
117
+ has_rdoc: true
118
+ homepage: http://github.com/BenHall/dolphindeploy
119
+ licenses: []
120
+
121
+ post_install_message:
122
+ rdoc_options:
123
+ - --charset=UTF-8
124
+ require_paths:
125
+ - lib
126
+ required_ruby_version: !ruby/object:Gem::Requirement
127
+ none: false
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ hash: 3
132
+ segments:
133
+ - 0
134
+ version: "0"
135
+ required_rubygems_version: !ruby/object:Gem::Requirement
136
+ none: false
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ hash: 3
141
+ segments:
142
+ - 0
143
+ version: "0"
144
+ requirements: []
145
+
146
+ rubyforge_project:
147
+ rubygems_version: 1.3.7
148
+ signing_key:
149
+ specification_version: 3
150
+ summary: Dolphin Deploy - Automated deployment for ASP.net websites
151
+ test_files:
152
+ - spec/configured_as/mvc_deployment_spec.rb
153
+ - spec/config_spec.rb
154
+ - spec/deploycommandcreator_spec.rb
155
+ - spec/dolphindeploy_spec.rb
156
+ - spec/file_manager_spec.rb
157
+ - spec/IIS/IIS6_spec.rb
158
+ - spec/IIS/IIS_spec.rb
159
+ - spec/support/spec_helper.rb