albacore 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +17 -7
- data/VERSION +1 -1
- data/install_dependencies.rb +46 -0
- data/lib/albacore.rb +1 -0
- data/lib/albacore/command.rb +23 -0
- data/lib/albacore/expandtemplates.rb +19 -4
- data/lib/albacore/msbuild.rb +3 -0
- data/lib/albacore/mspectestrunner.rb +22 -8
- data/lib/albacore/nunittestrunner.rb +5 -4
- data/lib/albacore/sftp.rb +19 -3
- data/lib/albacore/ssh.rb +20 -3
- data/lib/albacore/xunittestrunner.rb +48 -0
- data/lib/albacore/zipdirectory.rb +33 -12
- data/lib/rake/assemblyinfotask.rb +9 -15
- data/lib/rake/commandtask.rb +16 -0
- data/lib/rake/expandtemplatestask.rb +8 -14
- data/lib/rake/msbuildtask.rb +10 -15
- data/lib/rake/mspectask.rb +16 -0
- data/lib/rake/ncoverconsoletask.rb +9 -15
- data/lib/rake/ncoverreporttask.rb +9 -15
- data/lib/rake/nunittask.rb +9 -15
- data/lib/rake/renametask.rb +11 -16
- data/lib/rake/sftptask.rb +8 -14
- data/lib/rake/sqlcmdtask.rb +9 -15
- data/lib/rake/sshtask.rb +8 -14
- data/lib/rake/support/albacoretask.rb +19 -0
- data/lib/rake/xunittask.rb +16 -0
- data/lib/rake/ziptask.rb +9 -14
- data/rakefile.rb +95 -11
- data/spec/command_spec.rb +23 -0
- data/spec/commandtask_spec.rb +31 -0
- data/spec/expandtemplates_spec.rb +52 -0
- data/spec/expandtemplatestask_spec.rb +1 -1
- data/spec/msbuild_spec.rb +5 -5
- data/spec/msbuildtask_spec.rb +1 -1
- data/spec/mspectask_spec.rb +31 -0
- data/spec/ncoverconsole_spec.rb +43 -43
- data/spec/ncoverconsoletask_spec.rb +1 -1
- data/spec/ncoverreport_spec.rb +51 -51
- data/spec/ncoverreporttask_spec.rb +1 -1
- data/spec/nunittask_spec.rb +1 -1
- data/spec/nunittestrunner_spec.rb +64 -0
- data/spec/patches/system_patch.rb +5 -1
- data/spec/renametask_spec.rb +1 -1
- data/spec/sftptask_spec.rb +1 -1
- data/spec/sqlcmd_spec.rb +39 -39
- data/spec/sqlcmdtask_spec.rb +1 -1
- data/spec/sshtask_spec.rb +1 -1
- data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.XUnitTests.dll +0 -0
- data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll +0 -0
- data/spec/support/CodeCoverage/xunit/assemblies/xunit.dll +0 -0
- data/spec/support/CodeCoverage/xunit/assemblies/xunit.xml +2306 -0
- data/spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs +19 -0
- data/spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs +36 -0
- data/spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj +69 -0
- data/spec/support/TestSolution/TestSolution.sln +6 -0
- data/spec/support/expandtemplates/datafiles/sample_with_include.yml +2 -0
- data/spec/support/expandtemplates/datafiles/template_specific_data_file_with_include.yml +5 -0
- data/spec/support/expandtemplates/datafiles/template_specific_include.yml +3 -0
- data/spec/support/expandtemplatestestdata.rb +8 -0
- data/spec/support/spec_helper.rb +2 -0
- data/spec/xunittask_spec.rb +31 -0
- data/spec/zip_spec.rb +3 -3
- data/spec/ziptask_spec.rb +2 -1
- metadata +42 -4
@@ -0,0 +1,19 @@
|
|
1
|
+
using System;
|
2
|
+
using System.Collections.Generic;
|
3
|
+
using System.Linq;
|
4
|
+
using System.Text;
|
5
|
+
using Xunit;
|
6
|
+
|
7
|
+
namespace TestSolution.Tests
|
8
|
+
{
|
9
|
+
public class SomeTestFixture
|
10
|
+
{
|
11
|
+
[Fact]
|
12
|
+
public void foo()
|
13
|
+
{
|
14
|
+
Class1 c1 = new Class1();
|
15
|
+
string s = c1.Foo();
|
16
|
+
Assert.Equal("bar", s);
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
using System.Reflection;
|
2
|
+
using System.Runtime.CompilerServices;
|
3
|
+
using System.Runtime.InteropServices;
|
4
|
+
|
5
|
+
// General Information about an assembly is controlled through the following
|
6
|
+
// set of attributes. Change these attribute values to modify the information
|
7
|
+
// associated with an assembly.
|
8
|
+
[assembly: AssemblyTitle("TestSolution.XUnitTests")]
|
9
|
+
[assembly: AssemblyDescription("")]
|
10
|
+
[assembly: AssemblyConfiguration("")]
|
11
|
+
[assembly: AssemblyCompany("")]
|
12
|
+
[assembly: AssemblyProduct("TestSolution.XUnitTests")]
|
13
|
+
[assembly: AssemblyCopyright("Copyright © 2009")]
|
14
|
+
[assembly: AssemblyTrademark("")]
|
15
|
+
[assembly: AssemblyCulture("")]
|
16
|
+
|
17
|
+
// Setting ComVisible to false makes the types in this assembly not visible
|
18
|
+
// to COM components. If you need to access a type in this assembly from
|
19
|
+
// COM, set the ComVisible attribute to true on that type.
|
20
|
+
[assembly: ComVisible(false)]
|
21
|
+
|
22
|
+
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
23
|
+
[assembly: Guid("95bcd8d6-2532-4b98-b0e9-161c94027a93")]
|
24
|
+
|
25
|
+
// Version information for an assembly consists of the following four values:
|
26
|
+
//
|
27
|
+
// Major Version
|
28
|
+
// Minor Version
|
29
|
+
// Build Number
|
30
|
+
// Revision
|
31
|
+
//
|
32
|
+
// You can specify all the values or you can default the Build and Revision Numbers
|
33
|
+
// by using the '*' as shown below:
|
34
|
+
// [assembly: AssemblyVersion("1.0.*")]
|
35
|
+
[assembly: AssemblyVersion("1.0.0.0")]
|
36
|
+
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@@ -0,0 +1,69 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<PropertyGroup>
|
4
|
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
5
|
+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
6
|
+
<ProductVersion>9.0.30729</ProductVersion>
|
7
|
+
<SchemaVersion>2.0</SchemaVersion>
|
8
|
+
<ProjectGuid>{D9503B26-F9BF-4B16-B287-B998B9077371}</ProjectGuid>
|
9
|
+
<OutputType>Library</OutputType>
|
10
|
+
<AppDesignerFolder>Properties</AppDesignerFolder>
|
11
|
+
<RootNamespace>TestSolution.XUnitTests</RootNamespace>
|
12
|
+
<AssemblyName>TestSolution.XUnitTests</AssemblyName>
|
13
|
+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
14
|
+
<FileAlignment>512</FileAlignment>
|
15
|
+
</PropertyGroup>
|
16
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
17
|
+
<DebugSymbols>true</DebugSymbols>
|
18
|
+
<DebugType>full</DebugType>
|
19
|
+
<Optimize>false</Optimize>
|
20
|
+
<OutputPath>bin\Debug\</OutputPath>
|
21
|
+
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
22
|
+
<ErrorReport>prompt</ErrorReport>
|
23
|
+
<WarningLevel>4</WarningLevel>
|
24
|
+
</PropertyGroup>
|
25
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
26
|
+
<DebugType>pdbonly</DebugType>
|
27
|
+
<Optimize>true</Optimize>
|
28
|
+
<OutputPath>bin\Release\</OutputPath>
|
29
|
+
<DefineConstants>TRACE</DefineConstants>
|
30
|
+
<ErrorReport>prompt</ErrorReport>
|
31
|
+
<WarningLevel>4</WarningLevel>
|
32
|
+
</PropertyGroup>
|
33
|
+
<ItemGroup>
|
34
|
+
<Reference Include="System" />
|
35
|
+
<Reference Include="System.Core">
|
36
|
+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
37
|
+
</Reference>
|
38
|
+
<Reference Include="System.Xml.Linq">
|
39
|
+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
40
|
+
</Reference>
|
41
|
+
<Reference Include="System.Data.DataSetExtensions">
|
42
|
+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
43
|
+
</Reference>
|
44
|
+
<Reference Include="System.Data" />
|
45
|
+
<Reference Include="System.Xml" />
|
46
|
+
<Reference Include="xunit, Version=1.5.0.1479, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
|
47
|
+
<SpecificVersion>False</SpecificVersion>
|
48
|
+
<HintPath>..\..\Tools\XUnit-v1.5\xunit.dll</HintPath>
|
49
|
+
</Reference>
|
50
|
+
</ItemGroup>
|
51
|
+
<ItemGroup>
|
52
|
+
<Compile Include="Class1.cs" />
|
53
|
+
<Compile Include="Properties\AssemblyInfo.cs" />
|
54
|
+
</ItemGroup>
|
55
|
+
<ItemGroup>
|
56
|
+
<ProjectReference Include="..\TestSolution\TestSolution.csproj">
|
57
|
+
<Project>{36F8C06F-3BBA-4D11-9333-83573A760284}</Project>
|
58
|
+
<Name>TestSolution</Name>
|
59
|
+
</ProjectReference>
|
60
|
+
</ItemGroup>
|
61
|
+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
62
|
+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
63
|
+
Other similar extension points exist, see Microsoft.Common.targets.
|
64
|
+
<Target Name="BeforeBuild">
|
65
|
+
</Target>
|
66
|
+
<Target Name="AfterBuild">
|
67
|
+
</Target>
|
68
|
+
-->
|
69
|
+
</Project>
|
@@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestSolution.FailingTests",
|
|
9
9
|
EndProject
|
10
10
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestSolution.MSpecTests", "TestSolution.MSpecTests\TestSolution.MSpecTests.csproj", "{DC8BF855-3A09-4349-8A66-C20AF0EA00DF}"
|
11
11
|
EndProject
|
12
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestSolution.XUnitTests", "TestSolution.XUnitTests\TestSolution.XUnitTests.csproj", "{D9503B26-F9BF-4B16-B287-B998B9077371}"
|
13
|
+
EndProject
|
12
14
|
Global
|
13
15
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
14
16
|
Debug|Any CPU = Debug|Any CPU
|
@@ -31,6 +33,10 @@ Global
|
|
31
33
|
{DC8BF855-3A09-4349-8A66-C20AF0EA00DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
32
34
|
{DC8BF855-3A09-4349-8A66-C20AF0EA00DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
33
35
|
{DC8BF855-3A09-4349-8A66-C20AF0EA00DF}.Release|Any CPU.Build.0 = Release|Any CPU
|
36
|
+
{D9503B26-F9BF-4B16-B287-B998B9077371}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
37
|
+
{D9503B26-F9BF-4B16-B287-B998B9077371}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
38
|
+
{D9503B26-F9BF-4B16-B287-B998B9077371}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
39
|
+
{D9503B26-F9BF-4B16-B287-B998B9077371}.Release|Any CPU.Build.0 = Release|Any CPU
|
34
40
|
EndGlobalSection
|
35
41
|
GlobalSection(SolutionProperties) = preSolution
|
36
42
|
HideSolutionNode = FALSE
|
@@ -46,6 +46,14 @@ class ExpandTemplatesTestData
|
|
46
46
|
File.join(@datafilesfolder, "sample.yml")
|
47
47
|
end
|
48
48
|
|
49
|
+
def sample_data_file_with_include
|
50
|
+
File.join(@datafilesfolder, "sample_with_include.yml")
|
51
|
+
end
|
52
|
+
|
53
|
+
def template_specific_data_file_with_include
|
54
|
+
File.join(@datafilesfolder, "template_specific_data_file_with_include.yml")
|
55
|
+
end
|
56
|
+
|
49
57
|
def multiplevalues_data_file
|
50
58
|
File.join(@datafilesfolder, "multiplevalues.yml")
|
51
59
|
end
|
data/spec/support/spec_helper.rb
CHANGED
@@ -5,6 +5,8 @@ $: << File.join(@root_dir, "spec")
|
|
5
5
|
$: << File.join(@root_dir, "spec/patches")
|
6
6
|
$: << File.join(@root_dir, "spec/support")
|
7
7
|
|
8
|
+
require 'rake/tasklib'
|
9
|
+
require 'lib/rake/support/albacoretask.rb'
|
8
10
|
require 'not_a_mock'
|
9
11
|
require 'system_patch'
|
10
12
|
require 'tasklib_patch'
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'support', 'spec_helper')
|
2
|
+
require 'albacore/xunittestrunner'
|
3
|
+
require 'rake/xunittask'
|
4
|
+
require 'tasklib_patch'
|
5
|
+
|
6
|
+
describe Albacore::XUnitTask, "when running" do
|
7
|
+
before :all do
|
8
|
+
task = Albacore::XUnitTask.new(:xunit) do |t|
|
9
|
+
@yielded_object = t
|
10
|
+
end
|
11
|
+
task.extend(TasklibPatch)
|
12
|
+
Rake::Task[:xunit].invoke
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should yield the xunit api" do
|
16
|
+
@yielded_object.kind_of?(XUnitTestRunner).should be_true
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
describe Albacore::XUnitTask, "when execution fails" do
|
21
|
+
before :all do
|
22
|
+
@task = Albacore::XUnitTask.new(:failingtask)
|
23
|
+
@task.extend(TasklibPatch)
|
24
|
+
@task.fail
|
25
|
+
Rake::Task["failingtask"].invoke
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should fail the rake task" do
|
29
|
+
@task.task_failed.should == true
|
30
|
+
end
|
31
|
+
end
|
data/spec/zip_spec.rb
CHANGED
@@ -6,12 +6,12 @@ describe ZipDirectory, 'when zipping a directory of files' do
|
|
6
6
|
before :each do
|
7
7
|
zip = ZipDirectory.new
|
8
8
|
puts "#{ZipTestData.folder}"
|
9
|
-
zip.
|
10
|
-
zip.
|
9
|
+
zip.directories_to_zip = [ZipTestData.folder]
|
10
|
+
zip.output_file = "test.zip"
|
11
11
|
zip.package
|
12
12
|
end
|
13
13
|
|
14
|
-
it "should
|
14
|
+
it "should produce a zip file" do
|
15
15
|
File.exist?(File.join(ZipTestData.folder, "test.zip")).should be_true
|
16
16
|
end
|
17
17
|
end
|
data/spec/ziptask_spec.rb
CHANGED
metadata
CHANGED
@@ -1,16 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: albacore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Derick Bailey
|
8
8
|
- Ben Hall
|
9
|
+
- Steven Harman
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
12
13
|
|
13
|
-
date: 2009-
|
14
|
+
date: 2009-12-04 00:00:00 -06:00
|
14
15
|
default_executable:
|
15
16
|
dependencies:
|
16
17
|
- !ruby/object:Gem::Dependency
|
@@ -83,7 +84,17 @@ dependencies:
|
|
83
84
|
- !ruby/object:Gem::Version
|
84
85
|
version: 0.0.1
|
85
86
|
version:
|
86
|
-
|
87
|
+
- !ruby/object:Gem::Dependency
|
88
|
+
name: jekyll
|
89
|
+
type: :development
|
90
|
+
version_requirement:
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: 0.5.4
|
96
|
+
version:
|
97
|
+
description: Easily build your .NET solutions with rake, using this suite of rake tasks.
|
87
98
|
email: derickbailey@gmail.com
|
88
99
|
executables: []
|
89
100
|
|
@@ -95,8 +106,10 @@ files:
|
|
95
106
|
- EULA.txt
|
96
107
|
- README.markdown
|
97
108
|
- VERSION
|
109
|
+
- install_dependencies.rb
|
98
110
|
- lib/albacore.rb
|
99
111
|
- lib/albacore/assemblyinfo.rb
|
112
|
+
- lib/albacore/command.rb
|
100
113
|
- lib/albacore/expandtemplates.rb
|
101
114
|
- lib/albacore/msbuild.rb
|
102
115
|
- lib/albacore/mspectestrunner.rb
|
@@ -124,10 +137,13 @@ files:
|
|
124
137
|
- lib/albacore/support/logging.rb
|
125
138
|
- lib/albacore/support/runcommand.rb
|
126
139
|
- lib/albacore/support/yamlconfig.rb
|
140
|
+
- lib/albacore/xunittestrunner.rb
|
127
141
|
- lib/albacore/zipdirectory.rb
|
128
142
|
- lib/rake/assemblyinfotask.rb
|
143
|
+
- lib/rake/commandtask.rb
|
129
144
|
- lib/rake/expandtemplatestask.rb
|
130
145
|
- lib/rake/msbuildtask.rb
|
146
|
+
- lib/rake/mspectask.rb
|
131
147
|
- lib/rake/ncoverconsoletask.rb
|
132
148
|
- lib/rake/ncoverreporttask.rb
|
133
149
|
- lib/rake/nunittask.rb
|
@@ -135,19 +151,25 @@ files:
|
|
135
151
|
- lib/rake/sftptask.rb
|
136
152
|
- lib/rake/sqlcmdtask.rb
|
137
153
|
- lib/rake/sshtask.rb
|
154
|
+
- lib/rake/support/albacoretask.rb
|
155
|
+
- lib/rake/xunittask.rb
|
138
156
|
- lib/rake/ziptask.rb
|
139
157
|
- rakefile.rb
|
140
158
|
- spec/assemblyinfo_spec.rb
|
141
159
|
- spec/assemblyinfotask_spec.rb
|
160
|
+
- spec/command_spec.rb
|
161
|
+
- spec/commandtask_spec.rb
|
142
162
|
- spec/expandtemplates_spec.rb
|
143
163
|
- spec/expandtemplatestask_spec.rb
|
144
164
|
- spec/msbuild_spec.rb
|
145
165
|
- spec/msbuildtask_spec.rb
|
166
|
+
- spec/mspectask_spec.rb
|
146
167
|
- spec/ncoverconsole_spec.rb
|
147
168
|
- spec/ncoverconsoletask_spec.rb
|
148
169
|
- spec/ncoverreport_spec.rb
|
149
170
|
- spec/ncoverreporttask_spec.rb
|
150
171
|
- spec/nunittask_spec.rb
|
172
|
+
- spec/nunittestrunner_spec.rb
|
151
173
|
- spec/patches/system_patch.rb
|
152
174
|
- spec/patches/tasklib_patch.rb
|
153
175
|
- spec/renametask_spec.rb
|
@@ -169,6 +191,10 @@ files:
|
|
169
191
|
- spec/support/CodeCoverage/nunit/failing_assemblies/TestSolution.FailingTests.dll
|
170
192
|
- spec/support/CodeCoverage/nunit/failing_assemblies/nunit.framework.dll
|
171
193
|
- spec/support/CodeCoverage/report/coverage.xml
|
194
|
+
- spec/support/CodeCoverage/xunit/assemblies/TestSolution.XUnitTests.dll
|
195
|
+
- spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll
|
196
|
+
- spec/support/CodeCoverage/xunit/assemblies/xunit.dll
|
197
|
+
- spec/support/CodeCoverage/xunit/assemblies/xunit.xml
|
172
198
|
- spec/support/TestSolution/TestSolution.FailingTests/FailingTestFixture.cs
|
173
199
|
- spec/support/TestSolution/TestSolution.FailingTests/Properties/AssemblyInfo.cs
|
174
200
|
- spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj
|
@@ -178,6 +204,9 @@ files:
|
|
178
204
|
- spec/support/TestSolution/TestSolution.Tests/Properties/AssemblyInfo.cs
|
179
205
|
- spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
|
180
206
|
- spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj
|
207
|
+
- spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
|
208
|
+
- spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs
|
209
|
+
- spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj
|
181
210
|
- spec/support/TestSolution/TestSolution.sln
|
182
211
|
- spec/support/TestSolution/TestSolution/Class1.cs
|
183
212
|
- spec/support/TestSolution/TestSolution/Properties/AssemblyInfo.cs
|
@@ -187,6 +216,9 @@ files:
|
|
187
216
|
- spec/support/expandtemplates/datafiles/multitemplate-specificfile.yml
|
188
217
|
- spec/support/expandtemplates/datafiles/multitemplate.yml
|
189
218
|
- spec/support/expandtemplates/datafiles/sample.yml
|
219
|
+
- spec/support/expandtemplates/datafiles/sample_with_include.yml
|
220
|
+
- spec/support/expandtemplates/datafiles/template_specific_data_file_with_include.yml
|
221
|
+
- spec/support/expandtemplates/datafiles/template_specific_include.yml
|
190
222
|
- spec/support/expandtemplates/templates/multipleinstance.config
|
191
223
|
- spec/support/expandtemplates/templates/multiplevalues.config
|
192
224
|
- spec/support/expandtemplates/templates/sample.config
|
@@ -198,12 +230,13 @@ files:
|
|
198
230
|
- spec/support/zip/files/subfolder/sub file.txt
|
199
231
|
- spec/support/zip/files/testfile.txt
|
200
232
|
- spec/support/ziptestdata.rb
|
233
|
+
- spec/xunittask_spec.rb
|
201
234
|
- spec/yamlconfig_spec.rb
|
202
235
|
- spec/zip_spec.rb
|
203
236
|
- spec/ziptask_spec.rb
|
204
237
|
- yaml_autoconfig_test.yml
|
205
238
|
has_rdoc: true
|
206
|
-
homepage: http://
|
239
|
+
homepage: http://albacorebuild.net
|
207
240
|
licenses: []
|
208
241
|
|
209
242
|
post_install_message:
|
@@ -233,15 +266,19 @@ summary: A Suite of Rake Build Tasks For .Net Solutions
|
|
233
266
|
test_files:
|
234
267
|
- spec/assemblyinfotask_spec.rb
|
235
268
|
- spec/assemblyinfo_spec.rb
|
269
|
+
- spec/commandtask_spec.rb
|
270
|
+
- spec/command_spec.rb
|
236
271
|
- spec/expandtemplatestask_spec.rb
|
237
272
|
- spec/expandtemplates_spec.rb
|
238
273
|
- spec/msbuildtask_spec.rb
|
239
274
|
- spec/msbuild_spec.rb
|
275
|
+
- spec/mspectask_spec.rb
|
240
276
|
- spec/ncoverconsoletask_spec.rb
|
241
277
|
- spec/ncoverconsole_spec.rb
|
242
278
|
- spec/ncoverreporttask_spec.rb
|
243
279
|
- spec/ncoverreport_spec.rb
|
244
280
|
- spec/nunittask_spec.rb
|
281
|
+
- spec/nunittestrunner_spec.rb
|
245
282
|
- spec/patches/system_patch.rb
|
246
283
|
- spec/patches/tasklib_patch.rb
|
247
284
|
- spec/renametask_spec.rb
|
@@ -257,6 +294,7 @@ test_files:
|
|
257
294
|
- spec/support/ncoverreporttestdata.rb
|
258
295
|
- spec/support/spec_helper.rb
|
259
296
|
- spec/support/ziptestdata.rb
|
297
|
+
- spec/xunittask_spec.rb
|
260
298
|
- spec/yamlconfig_spec.rb
|
261
299
|
- spec/ziptask_spec.rb
|
262
300
|
- spec/zip_spec.rb
|