albacore 0.6.2.rc1 → 1.0.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (644) hide show
  1. checksums.yaml +7 -0
  2. data/.bundle/config +2 -0
  3. data/.gitignore +22 -3
  4. data/.rspec +2 -0
  5. data/.rvmrc +1 -0
  6. data/.travis.yml +15 -13
  7. data/CONTRIBUTING.md +87 -0
  8. data/Gemfile +6 -14
  9. data/Guardfile +3 -1
  10. data/LICENSE +21 -0
  11. data/README.md +47 -148
  12. data/Rakefile +24 -9
  13. data/albacore.gemspec +25 -32
  14. data/lib/albacore.rb +40 -3
  15. data/lib/albacore/albacoretask.rb +50 -0
  16. data/lib/albacore/aspnetcompiler.rb +58 -0
  17. data/lib/albacore/assemblyinfo.rb +182 -0
  18. data/lib/albacore/assemblyinfolanguages/assemblyinfoengine.rb +41 -0
  19. data/lib/albacore/assemblyinfolanguages/cppcliengine.rb +18 -0
  20. data/lib/albacore/assemblyinfolanguages/csharpengine.rb +15 -0
  21. data/lib/albacore/assemblyinfolanguages/fsharpengine.rb +23 -0
  22. data/lib/albacore/assemblyinfolanguages/vbnetengine.rb +15 -0
  23. data/lib/albacore/config/aspnetcompilerconfig.rb +29 -0
  24. data/lib/albacore/config/assemblyinfoconfig.rb +20 -0
  25. data/lib/albacore/config/config.rb +22 -0
  26. data/lib/albacore/config/cscconfig.rb +28 -0
  27. data/lib/albacore/config/docuconfig.rb +23 -0
  28. data/lib/albacore/config/execconfig.rb +15 -0
  29. data/lib/albacore/config/fluentmigratorrunnerconfig.rb +15 -0
  30. data/lib/albacore/config/ilmergeconfig.rb +24 -0
  31. data/lib/albacore/config/msbuildconfig.rb +29 -0
  32. data/lib/albacore/config/msdeployconfig.rb +15 -0
  33. data/lib/albacore/config/mspectestrunnerconfig.rb +15 -0
  34. data/lib/albacore/config/mstesttestrunnerconfig.rb +15 -0
  35. data/lib/albacore/config/nantconfig.rb +15 -0
  36. data/lib/albacore/config/nchurnconfig.rb +15 -0
  37. data/lib/albacore/config/ncoverconsoleconfig.rb +15 -0
  38. data/lib/albacore/config/ncoverreportconfig.rb +15 -0
  39. data/lib/albacore/config/ndependconfig.rb +15 -0
  40. data/lib/albacore/config/netversion.rb +24 -0
  41. data/lib/albacore/config/nugetpackconfig.rb +19 -0
  42. data/lib/albacore/config/nugetpublishconfig.rb +19 -0
  43. data/lib/albacore/config/nugetpushconfig.rb +19 -0
  44. data/lib/albacore/config/nugetupdateconfig.rb +19 -0
  45. data/lib/albacore/config/nunittestrunnerconfig.rb +14 -0
  46. data/lib/albacore/config/specflowreportconfig.rb +24 -0
  47. data/lib/albacore/config/sqlcmdconfig.rb +15 -0
  48. data/lib/albacore/config/unzipconfig.rb +15 -0
  49. data/lib/albacore/config/vssgetconfig.rb +14 -0
  50. data/lib/albacore/config/xbuildconfig.rb +15 -0
  51. data/lib/albacore/config/xunittestrunnerconfig.rb +15 -0
  52. data/lib/albacore/config/zipdirectoryconfig.rb +15 -0
  53. data/lib/albacore/csc.rb +67 -0
  54. data/lib/albacore/docu.rb +41 -0
  55. data/lib/albacore/exec.rb +18 -0
  56. data/lib/albacore/fluentmigratorrunner.rb +52 -0
  57. data/lib/albacore/ilmerge.rb +65 -0
  58. data/lib/albacore/msbuild.rb +78 -0
  59. data/lib/albacore/msdeploy.rb +122 -0
  60. data/lib/albacore/mspectestrunner.rb +50 -0
  61. data/lib/albacore/mstesttestrunner.rb +43 -0
  62. data/lib/albacore/nant.rb +38 -0
  63. data/lib/albacore/nchurn.rb +74 -0
  64. data/lib/albacore/ncoverconsole.rb +68 -0
  65. data/lib/albacore/ncoverreport.rb +62 -0
  66. data/lib/albacore/ncoverreports/assemblyfilter.rb +10 -0
  67. data/lib/albacore/ncoverreports/branchcoverage.rb +10 -0
  68. data/lib/albacore/ncoverreports/classfilter.rb +9 -0
  69. data/lib/albacore/ncoverreports/codecoveragebase.rb +25 -0
  70. data/lib/albacore/ncoverreports/cyclomaticcomplexity.rb +23 -0
  71. data/lib/albacore/ncoverreports/documentfilter.rb +9 -0
  72. data/lib/albacore/ncoverreports/fullcoveragereport.rb +13 -0
  73. data/lib/albacore/ncoverreports/methodcoverage.rb +10 -0
  74. data/lib/albacore/ncoverreports/methodfilter.rb +9 -0
  75. data/lib/albacore/ncoverreports/namespacefilter.rb +9 -0
  76. data/lib/albacore/ncoverreports/reportfilterbase.rb +26 -0
  77. data/lib/albacore/ncoverreports/summaryreport.rb +18 -0
  78. data/lib/albacore/ncoverreports/symbolcoverage.rb +9 -0
  79. data/lib/albacore/ndepend.rb +33 -0
  80. data/lib/albacore/nugetinstall.rb +57 -0
  81. data/lib/albacore/nugetpack.rb +54 -0
  82. data/lib/albacore/nugetpublish.rb +47 -0
  83. data/lib/albacore/nugetpush.rb +46 -0
  84. data/lib/albacore/nugetupdate.rb +51 -0
  85. data/lib/albacore/nunittestrunner.rb +41 -0
  86. data/lib/albacore/nuspec.rb +178 -0
  87. data/lib/albacore/output.rb +108 -0
  88. data/lib/albacore/plink.rb +47 -0
  89. data/lib/albacore/specflowreport.rb +62 -0
  90. data/lib/albacore/sqlcmd.rb +82 -0
  91. data/lib/albacore/support/attrmethods.rb +33 -0
  92. data/lib/albacore/support/createtask.rb +50 -0
  93. data/lib/albacore/support/failure.rb +15 -0
  94. data/lib/albacore/support/logging.rb +38 -0
  95. data/lib/albacore/support/openstruct.rb +13 -0
  96. data/lib/albacore/support/runcommand.rb +45 -0
  97. data/lib/albacore/support/supportlinux.rb +21 -0
  98. data/lib/albacore/support/updateattributes.rb +13 -0
  99. data/lib/albacore/support/yamlconfig.rb +18 -0
  100. data/lib/albacore/unzip.rb +34 -0
  101. data/lib/albacore/version.rb +3 -3
  102. data/lib/albacore/vssget.rb +44 -0
  103. data/lib/albacore/xbuild.rb +54 -0
  104. data/lib/albacore/xunittestrunner.rb +56 -0
  105. data/lib/albacore/zipdirectory.rb +108 -0
  106. data/samples/Rakefile +154 -0
  107. data/spec/README.md +9 -0
  108. data/spec/albacoremodel_spec.rb +53 -0
  109. data/spec/assemblyinfo_contexts.rb +52 -0
  110. data/spec/assemblyinfo_spec.rb +477 -0
  111. data/spec/attrmethods_spec.rb +136 -0
  112. data/spec/config_spec.rb +34 -0
  113. data/spec/createtask_spec.rb +237 -0
  114. data/spec/csc_spec.rb +253 -0
  115. data/spec/docu_spec.rb +109 -0
  116. data/spec/exec_spec.rb +45 -0
  117. data/spec/fluentmigratorrunner_spec.rb +263 -0
  118. data/spec/ilmerge_spec.rb +93 -0
  119. data/spec/msbuild_spec.rb +287 -0
  120. data/spec/msdeploy_spec.rb +124 -0
  121. data/spec/mspec_spec.rb +28 -0
  122. data/spec/mstesttestrunner_spec.rb +144 -0
  123. data/spec/nant_spec.rb +110 -0
  124. data/spec/nchurn_spec.rb +75 -0
  125. data/spec/ncoverconsole_spec.rb +353 -0
  126. data/spec/ncoverreport_spec.rb +619 -0
  127. data/spec/ndepend_spec.rb +72 -0
  128. data/spec/netversion_spec.rb +53 -0
  129. data/spec/nugetinstall_spec.rb +47 -0
  130. data/spec/nugetupdate_spec.rb +42 -0
  131. data/spec/nunittestrunner_spec.rb +115 -0
  132. data/spec/nuspec_spec.rb +127 -0
  133. data/spec/output_spec.rb +165 -0
  134. data/spec/patches/docu_patch.rb +13 -0
  135. data/spec/patches/fail_patch.rb +9 -0
  136. data/spec/patches/system_patch.rb +20 -0
  137. data/spec/plink_spec.rb +62 -0
  138. data/spec/runcommand_spec.rb +94 -0
  139. data/spec/spec.opts +1 -0
  140. data/spec/spec_helper.rb +15 -13
  141. data/spec/specflowreport_spec.rb +143 -0
  142. data/spec/sqlcmd_spec.rb +334 -0
  143. data/spec/support/AssemblyInfo/AssemblyInfo.test +6 -0
  144. data/spec/support/AssemblyInfo/AssemblyInfoInput.test +9 -0
  145. data/spec/support/AssemblyInfo/assemblyinfo.yml +2 -0
  146. data/spec/support/CodeCoverage/mspec/assemblies/Machine.Specifications.dll +0 -0
  147. data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.MSpecTests.dll +0 -0
  148. data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.dll +0 -0
  149. data/spec/support/CodeCoverage/mspec/assemblies/nunit.framework.dll +0 -0
  150. data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.NET40.dll +0 -0
  151. data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.dll +0 -0
  152. data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.Tests.dll +0 -0
  153. data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.dll +0 -0
  154. data/spec/support/CodeCoverage/nunit/assemblies/nunit.framework.dll +0 -0
  155. data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.Tests.dll +0 -0
  156. data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.dll +0 -0
  157. data/spec/support/CodeCoverage/nunit/assemblies/with spaces/nunit.framework.dll +0 -0
  158. data/spec/support/CodeCoverage/nunit/failing_assemblies/TestSolution.FailingTests.dll +0 -0
  159. data/spec/support/CodeCoverage/nunit/failing_assemblies/nunit.framework.dll +0 -0
  160. data/spec/support/CodeCoverage/report/coverage.xml +4578 -0
  161. data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.XUnitTests.dll +0 -0
  162. data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll +0 -0
  163. data/spec/support/CodeCoverage/xunit/assemblies/xunit.dll +0 -0
  164. data/spec/support/CodeCoverage/xunit/assemblies/xunit.xml +2604 -0
  165. data/spec/support/FluentMigrator/FluentMigrator.dll +0 -0
  166. data/spec/support/FluentMigrator/TestSolution.FluentMigrator.dll +0 -0
  167. data/spec/support/SpecFlow/TechTalk.SpecFlow.dll +0 -0
  168. data/spec/support/SpecFlow/TestSolution.SpecFlow.dll +0 -0
  169. data/spec/support/SpecFlow/TestSolution.SpecFlow.pdb +0 -0
  170. data/spec/support/SpecFlow/TestSolution.dll +0 -0
  171. data/spec/support/SpecFlow/TestSolution.pdb +0 -0
  172. data/spec/support/SpecFlow/nunit.framework.dll +0 -0
  173. data/spec/support/TestSolution/LocalTestRun.testrunconfig +5 -0
  174. data/spec/support/TestSolution/NDependProject.xml +315 -0
  175. data/spec/support/TestSolution/TestSolution.5.0.ReSharper.user +27 -0
  176. data/spec/support/TestSolution/TestSolution.FailingTests/FailingTestFixture.cs +19 -0
  177. data/spec/support/TestSolution/TestSolution.FailingTests/Properties/AssemblyInfo.cs +36 -0
  178. data/spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj +101 -0
  179. data/spec/support/TestSolution/TestSolution.FluentMigrator/M001_SampleMigration.cs +19 -0
  180. data/spec/support/TestSolution/TestSolution.FluentMigrator/Properties/AssemblyInfo.cs +36 -0
  181. data/spec/support/TestSolution/TestSolution.FluentMigrator/TestSolution.FluentMigrator.csproj +101 -0
  182. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy.sln +20 -0
  183. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx +13 -0
  184. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.cs +17 -0
  185. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.designer.cs +17 -0
  186. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx +60 -0
  187. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.cs +17 -0
  188. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.designer.cs +26 -0
  189. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx +13 -0
  190. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.cs +17 -0
  191. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.designer.cs +17 -0
  192. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx +49 -0
  193. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.cs +17 -0
  194. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.designer.cs +35 -0
  195. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx +75 -0
  196. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.cs +32 -0
  197. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.designer.cs +35 -0
  198. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Web.config +18 -0
  199. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx +17 -0
  200. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.cs +17 -0
  201. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.designer.cs +17 -0
  202. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax +1 -0
  203. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax.cs +47 -0
  204. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Properties/AssemblyInfo.cs +35 -0
  205. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1-vsdoc.js +8061 -0
  206. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.js +6111 -0
  207. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.min.js +167 -0
  208. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master +51 -0
  209. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.cs +17 -0
  210. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.designer.cs +71 -0
  211. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Styles/Site.css +294 -0
  212. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.Publish.xml +2 -0
  213. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.csproj +163 -0
  214. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Debug.config +30 -0
  215. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Release.config +31 -0
  216. data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.config +52 -0
  217. data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Properties/AssemblyInfo.cs +36 -0
  218. data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj +53 -0
  219. data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Tests.cs +20 -0
  220. data/spec/support/TestSolution/TestSolution.MSTestTests/Properties/AssemblyInfo.cs +35 -0
  221. data/spec/support/TestSolution/TestSolution.MSTestTests/TestSolution.MSTestTests.csproj +97 -0
  222. data/spec/support/TestSolution/TestSolution.MSTestTests/Tests.cs +20 -0
  223. data/spec/support/TestSolution/TestSolution.MSpecTests/Properties/AssemblyInfo.cs +36 -0
  224. data/spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs +18 -0
  225. data/spec/support/TestSolution/TestSolution.MSpecTests/TestSolution.MSpecTests.csproj +110 -0
  226. data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature +8 -0
  227. data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature.cs +73 -0
  228. data/spec/support/TestSolution/TestSolution.SpecFlow/Properties/AssemblyInfo.cs +36 -0
  229. data/spec/support/TestSolution/TestSolution.SpecFlow/StepDefinition.cs +30 -0
  230. data/spec/support/TestSolution/TestSolution.SpecFlow/TestSolution.SpecFlow.csproj +122 -0
  231. data/spec/support/TestSolution/TestSolution.Tests/Properties/AssemblyInfo.cs +36 -0
  232. data/spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs +23 -0
  233. data/spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj +107 -0
  234. data/spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs +20 -0
  235. data/spec/support/TestSolution/TestSolution.XUnitTests/FailingTestFixture.cs +14 -0
  236. data/spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs +36 -0
  237. data/spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj +108 -0
  238. data/spec/support/TestSolution/TestSolution.build +25 -0
  239. data/spec/support/TestSolution/TestSolution.sln +75 -0
  240. data/spec/support/TestSolution/TestSolution.vsmdi +6 -0
  241. data/spec/support/TestSolution/TestSolution/Class1.cs +17 -0
  242. data/spec/support/TestSolution/TestSolution/Properties/AssemblyInfo.cs +36 -0
  243. data/spec/support/TestSolution/TestSolution/TestSolution.csproj +97 -0
  244. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.MSBuild.dll +0 -0
  245. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.NAnt.dll +0 -0
  246. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.dll +0 -0
  247. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.pdb +0 -0
  248. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.dll +0 -0
  249. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.pdb +0 -0
  250. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.dll +0 -0
  251. data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.pdb +0 -0
  252. data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe +0 -0
  253. data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe.config +6 -0
  254. data/spec/support/Tools/FluentMigrator-0.9/Moq.dll +0 -0
  255. data/spec/support/Tools/FluentMigrator-0.9/Moq.xml +3467 -0
  256. data/spec/support/Tools/FluentMigrator-0.9/MySql.Data.dll +0 -0
  257. data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.dll +0 -0
  258. data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.xml +14880 -0
  259. data/spec/support/Tools/FluentMigrator-0.9/Oracle.DataAccess.dll +0 -0
  260. data/spec/support/Tools/FluentMigrator-0.9/System.Data.SQLite.DLL +0 -0
  261. data/spec/support/Tools/FluentMigrator-0.9/log4net.dll +0 -0
  262. data/spec/support/Tools/FluentMigrator-0.9/nunit.framework.dll +0 -0
  263. data/spec/support/Tools/FluentMigrator-0.9/nunit.should.dll +0 -0
  264. data/spec/support/Tools/FluentMigrator-0.9/testscript.sql +1 -0
  265. data/spec/support/Tools/MSTest-2008/MSTest.exe +0 -0
  266. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
  267. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
  268. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
  269. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
  270. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
  271. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
  272. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
  273. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
  274. data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
  275. data/spec/support/Tools/MSTest-2010/MSTest.exe +0 -0
  276. data/spec/support/Tools/MSTest-2010/MSTest.exe.config +31 -0
  277. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentObject.dll +0 -0
  278. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentProcessManager.dll +0 -0
  279. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CMI.dll +0 -0
  280. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CheckinPolicies.dll +0 -0
  281. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodeCoverage.dll +0 -0
  282. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITest.Controls.dll +0 -0
  283. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestFramework.dll +0 -0
  284. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestPackage.dll +0 -0
  285. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
  286. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
  287. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Controller.SpooledJob.dll +0 -0
  288. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
  289. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject.dll +0 -0
  290. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
  291. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAdapter.dll +0 -0
  292. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAgent.dll +0 -0
  293. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Linking.dll +0 -0
  294. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTest.dll +0 -0
  295. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll +0 -0
  296. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest +296 -0
  297. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto +150 -0
  298. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.dll +0 -0
  299. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.tlb +0 -0
  300. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExec.dll +0 -0
  301. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll +0 -0
  302. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestPackage.dll +0 -0
  303. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestUI.dll +0 -0
  304. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NICServices.dll +0 -0
  305. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NetworkEmulation.dll +0 -0
  306. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.OperationalStore.ClientHelper.dll +0 -0
  307. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBar.dll +0 -0
  308. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBarBHO100.dll +0 -0
  309. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Resource.dll +0 -0
  310. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Sqm.dll +0 -0
  311. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
  312. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TestCaseManagement.dll +0 -0
  313. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Adapter.dll +0 -0
  314. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.ObjectModel.dll +0 -0
  315. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Tip.dll +0 -0
  316. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Adapter.dll +0 -0
  317. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel.dll +0 -0
  318. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip.dll +0 -0
  319. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Adapter.dll +0 -0
  320. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.ObjectModel.dll +0 -0
  321. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Tip.dll +0 -0
  322. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.TuipPackage.dll +0 -0
  323. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
  324. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
  325. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
  326. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
  327. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.WebLoadTest.Tip.dll +0 -0
  328. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll +0 -0
  329. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Vsip.dll +0 -0
  330. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WarehouseCommon.dll +0 -0
  331. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestFramework.dll +0 -0
  332. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestPlayback.dll +0 -0
  333. data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Wizard.TestProjectWizards.dll +0 -0
  334. data/spec/support/Tools/MSTest-2010/mstest.reg +0 -0
  335. data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.TDNetRunner.dll +0 -0
  336. data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll +0 -0
  337. data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll.tdnet +5 -0
  338. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.dll +0 -0
  339. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.xml +504 -0
  340. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.1.bat +5 -0
  341. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.5.bat +5 -0
  342. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2008.bat +5 -0
  343. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2010.bat +5 -0
  344. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2008.bat +5 -0
  345. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2010.bat +5 -0
  346. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2008.bat +5 -0
  347. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2010.bat +5 -0
  348. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2008.bat +5 -0
  349. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2010.bat +5 -0
  350. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunner.bat +16 -0
  351. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunnerSilent.bat +16 -0
  352. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/License.txt +54 -0
  353. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.3.1.dll +0 -0
  354. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.plugin +43 -0
  355. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.1.dll +0 -0
  356. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.5.dll +0 -0
  357. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.0.dll +0 -0
  358. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.1.dll +0 -0
  359. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.0.dll +0 -0
  360. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.1.dll +0 -0
  361. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.Templates.dll +0 -0
  362. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.dll +0 -0
  363. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.SeleniumSupport.dll +0 -0
  364. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.TDNetRunner.dll +0 -0
  365. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.WatinSupport.dll +0 -0
  366. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll +0 -0
  367. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll.tdnet +5 -0
  368. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Spark.dll +0 -0
  369. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/TestDriven.Framework.dll +0 -0
  370. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/install.ps1 +6 -0
  371. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe +0 -0
  372. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe.config +6 -0
  373. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe +0 -0
  374. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe.config +6 -0
  375. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86.exe +0 -0
  376. data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec.exe +0 -0
  377. data/spec/support/Tools/NAnt-0.85/COPYING.txt +340 -0
  378. data/spec/support/Tools/NAnt-0.85/README.txt +144 -0
  379. data/spec/support/Tools/NChurn-v0.4/LICENSE.txt +133 -0
  380. data/spec/support/Tools/NChurn-v0.4/NChurn.exe +0 -0
  381. data/spec/support/Tools/NChurn-v0.4/README.md +171 -0
  382. data/spec/support/Tools/NChurn-v0.4/VERSION +1 -0
  383. data/spec/support/Tools/NChurn-v0.4/churn-0.4.0.0.txt +178 -0
  384. data/spec/support/Tools/NCover-v3.3/ActiproEULA.hml +287 -0
  385. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Shared.Wpf30.dll +0 -0
  386. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Addons.DotNet.Wpf30.dll +0 -0
  387. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Wpf30.dll +0 -0
  388. data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Text.Net20.dll +0 -0
  389. data/spec/support/Tools/NCover-v3.3/AdminBootstrapper.exe +0 -0
  390. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildNCoverExample.proj +237 -0
  391. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildReportingExample.proj +224 -0
  392. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntNCoverExample.build +241 -0
  393. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntReportingExample.build +218 -0
  394. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.MSBuildTasks.dll +0 -0
  395. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.NAntTasks.dll +0 -0
  396. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.MSBuildTasks.dll +0 -0
  397. data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.NAntTasks.dll +0 -0
  398. data/spec/support/Tools/NCover-v3.3/CC.Net/NCoverReporting30.xsl +2313 -0
  399. data/spec/support/Tools/NCover-v3.3/CC.Net/dashboard.config +55 -0
  400. data/spec/support/Tools/NCover-v3.3/CC.Net/excanvas.js +35 -0
  401. data/spec/support/Tools/NCover-v3.3/CC.Net/g.png +0 -0
  402. data/spec/support/Tools/NCover-v3.3/CC.Net/jquery-1.3.2.min.js +19 -0
  403. data/spec/support/Tools/NCover-v3.3/CC.Net/r.png +0 -0
  404. data/spec/support/Tools/NCover-v3.3/CC.Net/readme.txt +51 -0
  405. data/spec/support/Tools/NCover-v3.3/CC.Net/trends.js +184 -0
  406. data/spec/support/Tools/NCover-v3.3/CC.Net/y.png +0 -0
  407. data/spec/support/Tools/NCover-v3.3/MSVCM90.dll +0 -0
  408. data/spec/support/Tools/NCover-v3.3/MSVCP90.dll +0 -0
  409. data/spec/support/Tools/NCover-v3.3/MSVCR90.dll +0 -0
  410. data/spec/support/Tools/NCover-v3.3/Microsoft.VC90.CRT.manifest +13 -0
  411. data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.Linq.dll +0 -0
  412. data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.dll +0 -0
  413. data/spec/support/Tools/NCover-v3.3/NCover.Console.exe +0 -0
  414. data/spec/support/Tools/NCover-v3.3/NCover.Console.exe.config +55 -0
  415. data/spec/support/Tools/NCover-v3.3/NCover.Data.x86.dll +0 -0
  416. data/spec/support/Tools/NCover-v3.3/NCover.Explorer.Framework.dll +0 -0
  417. data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe +0 -0
  418. data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe.config +16 -0
  419. data/spec/support/Tools/NCover-v3.3/NCover.Framework.XmlSerializers.dll +0 -0
  420. data/spec/support/Tools/NCover-v3.3/NCover.Framework.dll +0 -0
  421. data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.Core.dll +0 -0
  422. data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.dll +0 -0
  423. data/spec/support/Tools/NCover-v3.3/NCover.Legacy.Configuration.dll +0 -0
  424. data/spec/support/Tools/NCover-v3.3/NCover.Lib.x86.dll +0 -0
  425. data/spec/support/Tools/NCover-v3.3/NCover.Registration.exe +0 -0
  426. data/spec/support/Tools/NCover-v3.3/NCover.Reporting.exe +0 -0
  427. data/spec/support/Tools/NCover-v3.3/NCover.Runner.dll +0 -0
  428. data/spec/support/Tools/NCover-v3.3/NCover.UpConvert.exe +0 -0
  429. data/spec/support/Tools/NCover-v3.3/NCover.Utilities.dll +0 -0
  430. data/spec/support/Tools/NCover-v3.3/NCoverEULA.pdf +0 -0
  431. data/spec/support/Tools/NCover-v3.3/NCoverExplorer.Console.exe +0 -0
  432. data/spec/support/Tools/NCover-v3.3/ReportingExample.config +213 -0
  433. data/spec/support/Tools/NCover-v3.3/System.Data.SQLite.dll +0 -0
  434. data/spec/support/Tools/NDepend-v2.12/EULA_NDepend.txt +94 -0
  435. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Data.v8.2.dll +0 -0
  436. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.OfficeSkins.v8.2.dll +0 -0
  437. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Utils.v8.2.dll +0 -0
  438. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraBars.v8.2.dll +0 -0
  439. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraEditors.v8.2.dll +0 -0
  440. data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraNavBar.v8.2.dll +0 -0
  441. data/spec/support/Tools/NDepend-v2.12/Lib/EnvDTE.dll +0 -0
  442. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.Drawing.dll +0 -0
  443. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll +0 -0
  444. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll.config +3 -0
  445. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.dll +0 -0
  446. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.OLE.Interop.dll +0 -0
  447. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.Interop.dll +0 -0
  448. data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.dll +0 -0
  449. data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.Pdb.dll +0 -0
  450. data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.dll +0 -0
  451. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.AddIn.dll +0 -0
  452. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Analysis.dll +0 -0
  453. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.CQL.dll +0 -0
  454. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Framework.dll +0 -0
  455. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Platform.DotNet.dll +0 -0
  456. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Skins.dll +0 -0
  457. data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.UI.dll +0 -0
  458. data/spec/support/Tools/NDepend-v2.12/Lib/msvcp71.dll +0 -0
  459. data/spec/support/Tools/NDepend-v2.12/Lib/msvcr71.dll +0 -0
  460. data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe +0 -0
  461. data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe.config +8 -0
  462. data/spec/support/Tools/NDepend-v2.12/QuickStartTutorial_NDepend.txt +152 -0
  463. data/spec/support/Tools/NDepend-v2.12/VisualNDepend.exe +0 -0
  464. data/spec/support/Tools/NUnit-v2.5/NUnitFitTests.html +277 -0
  465. data/spec/support/Tools/NUnit-v2.5/NUnitTests.config +84 -0
  466. data/spec/support/Tools/NUnit-v2.5/NUnitTests.nunit +14 -0
  467. data/spec/support/Tools/NUnit-v2.5/TestResult.xml +32 -0
  468. data/spec/support/Tools/NUnit-v2.5/agent.conf +4 -0
  469. data/spec/support/Tools/NUnit-v2.5/agent.log.conf +18 -0
  470. data/spec/support/Tools/NUnit-v2.5/clr.bat +96 -0
  471. data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.dll +0 -0
  472. data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.xml +10088 -0
  473. data/spec/support/Tools/NUnit-v2.5/framework/nunit.mocks.dll +0 -0
  474. data/spec/support/Tools/NUnit-v2.5/framework/pnunit.framework.dll +0 -0
  475. data/spec/support/Tools/NUnit-v2.5/launcher.log.conf +18 -0
  476. data/spec/support/Tools/NUnit-v2.5/lib/Failure.png +0 -0
  477. data/spec/support/Tools/NUnit-v2.5/lib/Ignored.png +0 -0
  478. data/spec/support/Tools/NUnit-v2.5/lib/Inconclusive.png +0 -0
  479. data/spec/support/Tools/NUnit-v2.5/lib/Skipped.png +0 -0
  480. data/spec/support/Tools/NUnit-v2.5/lib/Success.png +0 -0
  481. data/spec/support/Tools/NUnit-v2.5/lib/fit.dll +0 -0
  482. data/spec/support/Tools/NUnit-v2.5/lib/log4net.dll +0 -0
  483. data/spec/support/Tools/NUnit-v2.5/lib/nunit-console-runner.dll +0 -0
  484. data/spec/support/Tools/NUnit-v2.5/lib/nunit-gui-runner.dll +0 -0
  485. data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.dll +0 -0
  486. data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.interfaces.dll +0 -0
  487. data/spec/support/Tools/NUnit-v2.5/lib/nunit.fixtures.dll +0 -0
  488. data/spec/support/Tools/NUnit-v2.5/lib/nunit.uiexception.dll +0 -0
  489. data/spec/support/Tools/NUnit-v2.5/lib/nunit.uikit.dll +0 -0
  490. data/spec/support/Tools/NUnit-v2.5/lib/nunit.util.dll +0 -0
  491. data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe +0 -0
  492. data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe.config +87 -0
  493. data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe +0 -0
  494. data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe.config +87 -0
  495. data/spec/support/Tools/NUnit-v2.5/nunit-console.exe +0 -0
  496. data/spec/support/Tools/NUnit-v2.5/nunit-console.exe.config +87 -0
  497. data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe +0 -0
  498. data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe.config +95 -0
  499. data/spec/support/Tools/NUnit-v2.5/nunit.exe +0 -0
  500. data/spec/support/Tools/NUnit-v2.5/nunit.exe.config +95 -0
  501. data/spec/support/Tools/NUnit-v2.5/nunit.framework.dll +0 -0
  502. data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe +0 -0
  503. data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe.config +87 -0
  504. data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe +0 -0
  505. data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe.config +87 -0
  506. data/spec/support/Tools/NUnit-v2.5/pnunit.framework.dll +0 -0
  507. data/spec/support/Tools/NUnit-v2.5/pnunit.tests.dll +0 -0
  508. data/spec/support/Tools/NUnit-v2.5/runFile.exe +0 -0
  509. data/spec/support/Tools/NUnit-v2.5/runFile.exe.config +43 -0
  510. data/spec/support/Tools/NUnit-v2.5/runpnunit.bat +2 -0
  511. data/spec/support/Tools/NUnit-v2.5/test.conf +24 -0
  512. data/spec/support/Tools/PartCover-v2.3/Interop.PartCover.dll +0 -0
  513. data/spec/support/Tools/PartCover-v2.3/PartCover Browser Manual.rtf +28853 -0
  514. data/spec/support/Tools/PartCover-v2.3/PartCover Console Manual.rtf +203 -0
  515. data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.Api.dll +0 -0
  516. data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe +0 -0
  517. data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe.config +51 -0
  518. data/spec/support/Tools/PartCover-v2.3/PartCover.CorDriver.dll +0 -0
  519. data/spec/support/Tools/PartCover-v2.3/PartCover.Framework.dll +0 -0
  520. data/spec/support/Tools/PartCover-v2.3/PartCover.exe +0 -0
  521. data/spec/support/Tools/PartCover-v2.3/PartCover.exe.config +4 -0
  522. data/spec/support/Tools/PartCover-v2.3/PartViewer.dll +0 -0
  523. data/spec/support/Tools/PartCover-v2.3/app.ico +0 -0
  524. data/spec/support/Tools/PartCover-v2.3/log4net.dll +0 -0
  525. data/spec/support/Tools/PartCover-v2.3/xslt/Report By Assembly.xslt +54 -0
  526. data/spec/support/Tools/PartCover-v2.3/xslt/Report By Class.xslt +52 -0
  527. data/spec/support/Tools/SpecFlow/Antlr3.Runtime.dll +0 -0
  528. data/spec/support/Tools/SpecFlow/Interop.SHDocVw.dll +0 -0
  529. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Generator.dll +0 -0
  530. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Parser.dll +0 -0
  531. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Reporting.dll +0 -0
  532. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.VsIntegration.dll +0 -0
  533. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.dll +0 -0
  534. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.targets +58 -0
  535. data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.tasks +17 -0
  536. data/spec/support/Tools/SpecFlow/changelog.txt +50 -0
  537. data/spec/support/Tools/SpecFlow/specflow.exe +0 -0
  538. data/spec/support/Tools/XUnit-v1.9/EULA.txt +29 -0
  539. data/spec/support/Tools/XUnit-v1.9/HTML.xslt +126 -0
  540. data/spec/support/Tools/XUnit-v1.9/NUnitXml.xslt +121 -0
  541. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe +0 -0
  542. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe.config +21 -0
  543. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe +0 -0
  544. data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe.config +21 -0
  545. data/spec/support/Tools/XUnit-v1.9/xunit.console.exe +0 -0
  546. data/spec/support/Tools/XUnit-v1.9/xunit.console.exe.config +21 -0
  547. data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe +0 -0
  548. data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe.config +21 -0
  549. data/spec/support/Tools/XUnit-v1.9/xunit.dll +0 -0
  550. data/spec/support/Tools/XUnit-v1.9/xunit.dll.tdnet +5 -0
  551. data/spec/support/Tools/XUnit-v1.9/xunit.extensions.dll +0 -0
  552. data/spec/support/Tools/XUnit-v1.9/xunit.extensions.xml +805 -0
  553. data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.exe +0 -0
  554. data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.x86.exe +0 -0
  555. data/spec/support/Tools/XUnit-v1.9/xunit.gui.exe +0 -0
  556. data/spec/support/Tools/XUnit-v1.9/xunit.gui.x86.exe +0 -0
  557. data/spec/support/Tools/XUnit-v1.9/xunit.installer.exe +0 -0
  558. data/spec/support/Tools/XUnit-v1.9/xunit.runner.msbuild.dll +0 -0
  559. data/spec/support/Tools/XUnit-v1.9/xunit.runner.tdnet.dll +0 -0
  560. data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.dll +0 -0
  561. data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.xml +1212 -0
  562. data/spec/support/Tools/XUnit-v1.9/xunit.xml +2604 -0
  563. data/spec/support/assemblyinfotester.rb +52 -0
  564. data/spec/support/csc/File1.cs +9 -0
  565. data/spec/support/csc/File2.cs +9 -0
  566. data/spec/support/csc/output/ignorethis.txt +1 -0
  567. data/spec/support/ironruby_validator.rb +26 -0
  568. data/spec/support/msbuildtestdata.rb +32 -0
  569. data/spec/support/nanttestdata.rb +33 -0
  570. data/spec/support/ncoverconsoletestdata.rb +20 -0
  571. data/spec/support/ncoverreporttestdata.rb +26 -0
  572. data/spec/support/nokogiri_validator.rb +15 -0
  573. data/spec/support/nuspec/nuspec.xsd +84 -0
  574. data/spec/support/outputtestdata.rb +13 -0
  575. data/spec/support/test.yml +4 -0
  576. data/spec/support/yamlconfig/msbuild.yml +5 -0
  577. data/spec/support/yamlconfig/yaml_autoconfig_test.yml +1 -0
  578. data/spec/support/zip/files/subfolder/sub file.txt +1 -0
  579. data/spec/support/zip/files/testfile.txt +1 -0
  580. data/spec/support/ziptestdata.rb +13 -0
  581. data/spec/unzip_spec.rb +57 -0
  582. data/spec/xbuild_spec.rb +15 -0
  583. data/spec/xunit_spec.rb +200 -0
  584. data/spec/yamlconfig_spec.rb +49 -0
  585. data/spec/zip_spec.rb +215 -0
  586. metadata +1231 -191
  587. data/lib/albacore/albacore_module.rb +0 -53
  588. data/lib/albacore/application.rb +0 -32
  589. data/lib/albacore/asmver.rb +0 -67
  590. data/lib/albacore/asmver/cpp.rb +0 -20
  591. data/lib/albacore/asmver/cs.rb +0 -17
  592. data/lib/albacore/asmver/engine.rb +0 -43
  593. data/lib/albacore/asmver/fs.rb +0 -25
  594. data/lib/albacore/asmver/vb.rb +0 -17
  595. data/lib/albacore/build.rb +0 -203
  596. data/lib/albacore/cmd_config.rb +0 -55
  597. data/lib/albacore/cross_platform_cmd.rb +0 -177
  598. data/lib/albacore/dsl.rb +0 -118
  599. data/lib/albacore/errors/unfilled_property_error.rb +0 -14
  600. data/lib/albacore/ext/README.md +0 -12
  601. data/lib/albacore/ext/teamcity.rb +0 -64
  602. data/lib/albacore/facts.rb +0 -25
  603. data/lib/albacore/logging.rb +0 -29
  604. data/lib/albacore/migrate.rb +0 -175
  605. data/lib/albacore/nugets_authentication.rb +0 -9
  606. data/lib/albacore/nugets_pack.rb +0 -283
  607. data/lib/albacore/nugets_restore.rb +0 -131
  608. data/lib/albacore/paths.rb +0 -30
  609. data/lib/albacore/project.rb +0 -104
  610. data/lib/albacore/restore_hint_paths.rb +0 -112
  611. data/lib/albacore/semver.rb +0 -5
  612. data/lib/albacore/tasks/README.md +0 -16
  613. data/lib/albacore/tasks/albasemver.rb +0 -49
  614. data/lib/albacore/tasks/projectlint.rb +0 -81
  615. data/lib/albacore/tasks/versionizer.rb +0 -65
  616. data/lib/albacore/test_runner.rb +0 -39
  617. data/spec/Rakefile +0 -5
  618. data/spec/albacore_spec.rb +0 -35
  619. data/spec/cross_platform_cmd_spec.rb +0 -77
  620. data/spec/ext_teamcity_spec.rb +0 -71
  621. data/spec/facts_spec.rb +0 -7
  622. data/spec/migrate_spec.rb +0 -80
  623. data/spec/nugets_pack_spec.rb +0 -66
  624. data/spec/nugets_restore_spec.rb +0 -55
  625. data/spec/project_spec.rb +0 -26
  626. data/spec/projectlint/added_but_not_on_filesystem/aproject.csproj +0 -29
  627. data/spec/projectlint/correct/File.cs +0 -1
  628. data/spec/projectlint/correct/Image.txt +0 -1
  629. data/spec/projectlint/correct/MyHeavy.heavy +0 -1
  630. data/spec/projectlint/correct/Schema.xsd +0 -1
  631. data/spec/projectlint/correct/SubFolder/AnotherFile.cs +0 -1
  632. data/spec/projectlint/correct/aproject.csproj +0 -29
  633. data/spec/projectlint/on_filesystem_but_not_added/File.cs +0 -1
  634. data/spec/projectlint/on_filesystem_but_not_added/Image.txt +0 -1
  635. data/spec/projectlint/on_filesystem_but_not_added/aproject.csproj +0 -11
  636. data/spec/projectlint_spec.rb +0 -77
  637. data/spec/sh_interceptor.rb +0 -33
  638. data/spec/smoke_spec.rb +0 -9
  639. data/spec/testdata/Library1.fs +0 -4
  640. data/spec/testdata/Project.fsproj +0 -58
  641. data/spec/testdata/Project/Project.sln +0 -20
  642. data/spec/testdata/Project/Project.v11.suo +0 -0
  643. data/spec/testdata/example.nuspec +0 -14
  644. data/spec/testdata/packages.config +0 -6
@@ -0,0 +1,144 @@
1
+ NAnt
2
+
3
+ What is it?
4
+ -----------
5
+ NAnt is a .NET based build tool. In theory it is kind of like make without
6
+ make's wrinkles. In practice it's a lot like Ant.
7
+
8
+ If you are not familiar with Jakarta Ant you can get more information at the
9
+ Ant project web site (http://ant.apache.org/).
10
+
11
+
12
+ Why NAnt?
13
+ ---------
14
+ Because Ant was too Java specific.
15
+ Because Ant needed the Java runtime. NAnt only needs the .NET
16
+ or Mono runtime.
17
+
18
+
19
+ The Latest Version
20
+ ------------------
21
+ Details of the latest version can be found on the NAnt project web site
22
+ http://nant.sourceforge.net/
23
+
24
+
25
+ Compilation and Installation
26
+ -------------------------------
27
+
28
+ a. Build Requirements
29
+ --------------------
30
+ To build NAnt, you will need the following components:
31
+
32
+ on Windows
33
+
34
+ * A version of the Microsoft .NET Framework
35
+
36
+ Available from http://msdn.microsoft.com/netframework/
37
+
38
+ you will need the .NET Framework SDK as well as the runtime components
39
+ if you intend to compile programs.
40
+
41
+ note that NAnt currently supports versions 1.0, 1.1 and 2.0 (Beta 1)
42
+ of the Microsoft .NET Framework.
43
+
44
+ or
45
+
46
+ * Mono for Windows (version 1.0 or higher)
47
+
48
+ Available from http://www.mono-project.com/downloads/
49
+
50
+ Linux/Unix
51
+
52
+ * GNU toolchain - including GNU make
53
+
54
+ * pkg-config
55
+
56
+ Available from: http://www.freedesktop.org/Software/pkgconfig
57
+
58
+ * A working Mono installation and development libraries (version 1.0 or higher)
59
+
60
+ Available from: http://www.mono-project.com/downloads/
61
+
62
+
63
+ b. Building the Software
64
+ ------------------------
65
+
66
+ Build NAnt using Microsoft .NET
67
+
68
+ GNU Make
69
+ --------
70
+
71
+ make install MONO= MCS=csc prefix=<installation path>
72
+
73
+ eg. make install MONO= MCS=csc prefix="c:\Program Files"
74
+
75
+ NMake
76
+ -----
77
+
78
+ nmake -f Makefile.nmake install prefix=<installation path>
79
+
80
+ eg. nmake -f Makefile.nmake install prefix="c:\Program Files"
81
+
82
+
83
+ Building NAnt using Mono
84
+
85
+ GNU Make
86
+ --------
87
+
88
+ make install prefix=<installation path>
89
+
90
+ eg. make install prefix="c:\Program Files"
91
+
92
+ NMake
93
+ -----
94
+
95
+ nmake -f Makefile.nmake install MONO=mono CSC=mcs prefix=<installation path>
96
+
97
+ eg. nmake -f Makefile.nmake install MONO=mono CSC=mcs prefix=/usr/local/
98
+
99
+ Note:
100
+
101
+ These instructions only apply to the source distribution of NAntContrib, as the binary distribution
102
+ contains pre-built assemblies.
103
+
104
+
105
+ Documentation
106
+ -------------
107
+ Documentation is available in HTML format, in the doc/ directory.
108
+
109
+
110
+ License
111
+ -------
112
+ Copyright (C) 2001-2005 Gerry Shaw
113
+
114
+ This program is free software; you can redistribute it and/or modify
115
+ it under the terms of the GNU General Public License as published by
116
+ the Free Software Foundation; either version 2 of the License, or
117
+ (at your option) any later version.
118
+
119
+ This program is distributed in the hope that it will be useful,
120
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
121
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
122
+ GNU General Public License for more details.
123
+
124
+ You should have received a copy of the GNU General Public License
125
+ along with this program; if not, write to the Free Software
126
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
127
+
128
+ As a special exception, the copyright holders of this software give you
129
+ permission to link the assemblies with independent modules to produce new
130
+ assemblies, regardless of the license terms of these independent modules,
131
+ and to copy and distribute the resulting assemblies under terms of your
132
+ choice, provided that you also meet, for each linked independent module,
133
+ the terms and conditions of the license of that module. An independent
134
+ module is a module which is not derived from or based on these assemblies.
135
+ If you modify this software, you may extend this exception to your version
136
+ of the software, but you are not obligated to do so. If you do not wish to
137
+ do so, delete this exception statement from your version.
138
+
139
+ A copy of the GNU General Public License is available in the COPYING.txt file
140
+ included with all NAnt distributions.
141
+
142
+ For more licensing information refer to the GNU General Public License on the
143
+ GNU Project web site.
144
+ http://www.gnu.org/copyleft/gpl.html
@@ -0,0 +1,133 @@
1
+ Copyright (c) 2010, Dotan Nahum <dotan@paracode.com>
2
+ All rights reserved.
3
+
4
+ --
5
+
6
+ Apache License, Version 2.0
7
+
8
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
9
+
10
+ 1. Definitions.
11
+
12
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1
13
+ through 9 of this document.
14
+
15
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
16
+
17
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by,
18
+ or are under common control with that entity. For the purposes of this definition, "control" means (i) the power,
19
+ direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or
20
+ (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
23
+
24
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source
25
+ code, documentation source, and configuration files.
26
+
27
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form,
28
+ including but not limited to compiled object code, generated documentation, and conversions to other media types.
29
+
30
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License,
31
+ as indicated by a copyright notice that is included in or attached to the work (an example is provided in the
32
+ Appendix below).
33
+
34
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from)
35
+ the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent,
36
+ as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include
37
+ works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative
38
+ Works thereof.
39
+
40
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications
41
+ or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion
42
+ in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the
43
+ copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written
44
+ communication sent to the Licensor or its representatives, including but not limited to communication on electronic
45
+ mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of,
46
+ the Licensor for the purpose of discussing and improving the Work, but excluding communication that is
47
+ conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
48
+
49
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been
50
+ received by Licensor and subsequently incorporated within the Work.
51
+
52
+ 2. Grant of Copyright License.
53
+
54
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide,
55
+ non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of,
56
+ publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or
57
+ Object form.
58
+
59
+ 3. Grant of Patent License.
60
+
61
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide,
62
+ non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make,
63
+ have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to
64
+ those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone
65
+ or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You
66
+ institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging
67
+ that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent
68
+ infringement, then any patent licenses granted to You under this License for that Work shall terminate as of
69
+ the date such litigation is filed.
70
+
71
+ 4. Redistribution.
72
+
73
+ You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without
74
+ modifications, and in Source or Object form, provided that You meet the following conditions:
75
+
76
+ 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
77
+ 2. You must cause any modified files to carry prominent notices stating that You changed the files; and
78
+ 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent,
79
+ trademark, and attribution notices from the Source form of the Work, excluding those notices that do not
80
+ pertain to any part of the Derivative Works; and
81
+ 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You
82
+ distribute must include a readable copy of the attribution notices contained within such NOTICE file,
83
+ excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the
84
+ following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source
85
+ form or documentation, if provided along with the Derivative Works; or, within a display generated by the
86
+ Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file
87
+ are for informational purposes only and do not modify the License. You may add Your own attribution notices
88
+ within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work,
89
+ provided that such additional attribution notices cannot be construed as modifying the License.
90
+ 5. You may add Your own copyright statement to Your modifications and may provide additional or different license
91
+ terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative
92
+ Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the
93
+ conditions stated in this License.
94
+
95
+ 5. Submission of Contributions.
96
+
97
+ Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You
98
+ to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions.
99
+ Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you
100
+ may have executed with Licensor regarding such Contributions.
101
+
102
+ 6. Trademarks.
103
+
104
+ This License does not grant permission to use the trade names, trademarks, service marks, or product names of the
105
+ Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing
106
+ the content of the NOTICE file.
107
+
108
+ 7. Disclaimer of Warranty.
109
+
110
+ Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides
111
+ its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
112
+ including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS
113
+ FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing
114
+ the Work and assume any risks associated with Your exercise of permissions under this License.
115
+
116
+ 8. Limitation of Liability.
117
+
118
+ In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless
119
+ required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any
120
+ Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential
121
+ damages of any character arising as a result of this License or out of the use or inability to use the Work
122
+ (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction,
123
+ or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility
124
+ of such damages.
125
+
126
+ 9. Accepting Warranty or Additional Liability.
127
+
128
+ While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for,
129
+ acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this
130
+ License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole
131
+ responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold
132
+ each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason
133
+ of your accepting any such warranty or additional liability.
@@ -0,0 +1,171 @@
1
+ NChurn
2
+ ======
3
+
4
+ NChurn is a utility that helps asses the churn level of your files in your repository.
5
+ Churn can help you detect which files are changed the most in their life time. This helps identify potential bug hives, and improper design.
6
+ The best thing to do is to plug NChurn into your build process and store history of each run. Then, you can plot the evolution of your repository's churn.
7
+ **Developers see note about building below, if you want to build from source.**
8
+
9
+ NChurn currently supports file-level churns for
10
+
11
+ * Git
12
+ * Hg (Mercurial)
13
+ * SVN
14
+ * TFS (Team Foundation)
15
+
16
+
17
+ As outputs, NChurn supports
18
+
19
+ * Table (plain ASCII)
20
+ * CSV
21
+ * XML (recommended for builds)
22
+
23
+
24
+ Amongst others, NChurn can also take top # of items to display, cut off churn level, and a date to go back up to. See "Getting Started".
25
+
26
+ Background
27
+ ----------------
28
+ From this work http://research.microsoft.com/apps/pubs/default.aspx?id=69126
29
+
30
+ Code is not static; it evolves over time to meet new requirements. The way code
31
+ evolved in the past can be used to predict its evolution in the future. In particular,
32
+ there is an often accepted notion that code that changes a lot is of lower quality—
33
+ and thus more defect-prone than unchanged code.
34
+
35
+ Key Points
36
+ - The more a component has changed (churned), the more likely it is to have
37
+ defects.
38
+ Code churn measures can be used to predict defect-prone components.
39
+
40
+ NChurn currently gives a view of *file churn* and will hopefully expand into analyzing files and languages themselves in the future.
41
+
42
+ Getting Started
43
+ ---------------
44
+
45
+ $ NChurn -h
46
+ NChurn 0.4.0.0
47
+ Usage: NChurn
48
+ NChurn -c 4 -d 24-3-2010 -t 10
49
+
50
+ d, from-date Past date to calculate churn from. Absolute in dd-mm-yyyy or
51
+ number of days back from now.
52
+
53
+ c, churn Minimal churn. Specify either a number for minimum, or float
54
+ for precent.
55
+
56
+ t, top Return this number of top records.
57
+
58
+ r, report Type of report to output. Use one of: table (default), xml,
59
+ csv
60
+
61
+ a, adapter Use a specific versioning adapter. Use one of: auto
62
+ (default), git, tf, svn, hg
63
+
64
+ p, env-path Add to PATH. i.e. for svn.exe you might add "c:\tools". Can
65
+ add multiple with ;.
66
+
67
+ i, input Get input from a file instead of running a versioning system.
68
+ Must specify correct adapter via -a.
69
+
70
+ x, exclude Exclude resources matching this regular expression
71
+
72
+ n, include Include resources matching this regular expression
73
+
74
+ help Dispaly this help screen.
75
+
76
+
77
+
78
+ Any combination of parameters work.
79
+
80
+ $ NChurn -t 5 -c 3 # take top 5, cut off at level 3 and below.
81
+ $ NChurn -c 0.3 # display files that consist 30% of all changes (0.3)
82
+ $ NChurn -d 24-12-2010 # calculate for 24th of Dec, 2010 up to now.
83
+ $ NChurn -c 2 -r xml # cut off at 2, report output as XML.
84
+ $ NChurn -d 30 -i svn.log -a svn # go back 30 days, read from pre-made file, adapter is SVN.
85
+ $ NChurn -p c:\tools\svn -a svn # specify path and adapter on an environment that hasn't got a PATH.
86
+ $ NChurn -x exe$ # exclude resources that end with 'exe'
87
+
88
+ Here is a sample of a run, which cuts off at 8, and uses the default table report:
89
+
90
+ $ NChurn -c 8
91
+ +--------------------------------------------------+
92
+ | lib/rubikon/application/instance_methods.rb | 48 |
93
+ | lib/rubikon/application.rb | 30 |
94
+ | test/test.rb | 30 |
95
+ | lib/rubikon/command.rb | 28 |
96
+ | lib/rubikon/parameter.rb | 17 |
97
+ | test/application_tests.rb | 14 |
98
+ | Rakefile | 13 |
99
+ | lib/rubikon/application/dsl_methods.rb | 12 |
100
+ | README.md | 11 |
101
+ | samples/helloworld/hello_world.rb | 11 |
102
+ | lib/rubikon.rb | 10 |
103
+ | lib/rubikon/exceptions.rb | 10 |
104
+ | lib/rubikon/flag.rb | 10 |
105
+ | lib/rubikon/action.rb | 9 |
106
+ | lib/rubikon/application/base.rb | 9 |
107
+ | lib/rubikon/option.rb | 9 |
108
+ | lib/rubikon/progress_bar.rb | 9 |
109
+ | samples/helloworld.rb | 9 |
110
+ +--------------------------------------------------+
111
+
112
+ And here is an example of taking the top 4 records on NChurn's git repo, output as xml report.
113
+
114
+ $ NChurn -t 4 -r xml
115
+ <?xml version="1.0" encoding="utf-8"?>
116
+ <NChurnAnalysisResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
117
+ <FileChurns>
118
+ <FileChurn>
119
+ <File>README.md</File>
120
+ <Value>2</Value>
121
+ </FileChurn>
122
+ <FileChurn>
123
+ <File>.gitignore</File>
124
+ <Value>1</Value>
125
+ </FileChurn>
126
+ <FileChurn>
127
+ <File>AssemblyInfo.cs</File>
128
+ <Value>1</Value>
129
+ </FileChurn>
130
+ <FileChurn>
131
+ <File>Gemfile</File>
132
+ <Value>1</Value>
133
+ </FileChurn>
134
+ </FileChurns>
135
+ </NChurnAnalysisResult>
136
+
137
+ Building
138
+ ----------
139
+ You can build NChurn in 2 ways:
140
+
141
+ * Visual studio
142
+ * Rake (albacore)
143
+
144
+ To build with rake (the recommended way), make sure to `bundle install`, then look at your options with `rake -T`.
145
+ _Note:_ I've excluded tf.log and tf.log.result from the repository, out of discreteness. Make sure to exclude from project or even better contribute back a log we can publicly use.
146
+
147
+ Contribute
148
+ ----------
149
+
150
+ NChurn is an open-source project. Therefore you are free to help improving it.
151
+ There are several ways of contributing to NChurn's development:
152
+
153
+ * Build apps using NChurn and spread the word.
154
+ * Bug and features using the [issue tracker][2].
155
+ * Submit patches fixing bugs and implementing new functionality.
156
+ * Create an NChurn fork on [GitHub][1] and start hacking. Extra points for using GitHubs pull requests and feature branches.
157
+
158
+ License
159
+ -------
160
+
161
+ This code is free software; you can redistribute it and/or modify it under the
162
+ terms of the Apache License. See LICENSE.txt.
163
+
164
+ Copyright
165
+ ---------
166
+
167
+ Copyright (c) 2011, Dotan Nahum <dotan@paracode.com>
168
+
169
+
170
+ [1]: http://github.com/jondot/nchurn
171
+ [2]: http://github.com/jondot/nchurn/issues