alpacabuildtool 1.0.0
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.
- checksums.yaml +7 -0
- data/.gitignore +48 -0
- data/.rubocop.yml +12 -0
- data/.semver +6 -0
- data/.travis.yml +10 -0
- data/CHANGELOG +18 -0
- data/Gemfile +7 -0
- data/LICENSE +22 -0
- data/README.md +235 -0
- data/README.rdoc +39 -0
- data/Rakefile +74 -0
- data/alpacabuildtool.gemspec +34 -0
- data/alpacabuildtool.rdoc +5 -0
- data/alpacabuildtool.todo +9 -0
- data/bin/alpaca +142 -0
- data/features/alpaca.feature +8 -0
- data/features/step_definitions/alpaca_steps.rb +13 -0
- data/features/step_definitions/visual_studio_solutions_steps.rb +47 -0
- data/features/support/env.rb +10 -0
- data/features/visual_studio_solutions.feature +43 -0
- data/lib/alpacabuildtool.rb +4 -0
- data/lib/alpacabuildtool/application.rb +195 -0
- data/lib/alpacabuildtool/configuration.rb +209 -0
- data/lib/alpacabuildtool/data/.alpaca.conf +148 -0
- data/lib/alpacabuildtool/data/doom.flf +826 -0
- data/lib/alpacabuildtool/data/logo.jpg +0 -0
- data/lib/alpacabuildtool/entities/nuspec.rb +107 -0
- data/lib/alpacabuildtool/entities/project.rb +54 -0
- data/lib/alpacabuildtool/entities/solution.rb +104 -0
- data/lib/alpacabuildtool/entities/xml.rb +41 -0
- data/lib/alpacabuildtool/entities/xml_node.rb +75 -0
- data/lib/alpacabuildtool/log/font.rb +92 -0
- data/lib/alpacabuildtool/log/log.rb +15 -0
- data/lib/alpacabuildtool/log/rainbowify_formatter.rb +70 -0
- data/lib/alpacabuildtool/log/rainbowify_logger.rb +47 -0
- data/lib/alpacabuildtool/managers/build_manager.rb +32 -0
- data/lib/alpacabuildtool/managers/package_manager.rb +136 -0
- data/lib/alpacabuildtool/managers/report_manager.rb +33 -0
- data/lib/alpacabuildtool/managers/test_manager.rb +35 -0
- data/lib/alpacabuildtool/os.rb +29 -0
- data/lib/alpacabuildtool/package_types/project_package.rb +44 -0
- data/lib/alpacabuildtool/package_types/tool_package.rb +53 -0
- data/lib/alpacabuildtool/tools/git.rb +22 -0
- data/lib/alpacabuildtool/tools/msbuild.rb +29 -0
- data/lib/alpacabuildtool/tools/nuget.rb +49 -0
- data/lib/alpacabuildtool/tools/nunit.rb +28 -0
- data/lib/alpacabuildtool/tools/nunit_orange.rb +18 -0
- data/lib/alpacabuildtool/tools/open_cover.rb +29 -0
- data/lib/alpacabuildtool/tools/report_generator.rb +25 -0
- data/lib/alpacabuildtool/tools/tool.rb +84 -0
- data/lib/alpacabuildtool/tools/wrapper.rb +66 -0
- data/lib/alpacabuildtool/versioning/version.rb +163 -0
- data/lib/alpacabuildtool/versioning/versioning.rb +84 -0
- data/spec/lib/alpacabuildtool/configuration_spec.rb +201 -0
- data/spec/lib/alpacabuildtool/entities/xml_spec.rb +39 -0
- data/spec/lib/alpacabuildtool/versioning/version_spec.rb +86 -0
- data/spec/lib/alpacabuildtool/versioning/versioning_spec.rb +194 -0
- data/spec/spec_helper.rb +3 -0
- data/spec/support/coverage.rb +26 -0
- data/test_data/sln1/.alpaca.conf +11 -0
- data/test_data/sln1/.semver +6 -0
- data/test_data/sln1/TestSolution.sln +22 -0
- data/test_data/sln1/TestSolution/App.config +6 -0
- data/test_data/sln1/TestSolution/Program.cs +16 -0
- data/test_data/sln1/TestSolution/Properties/AssemblyInfo.cs +36 -0
- data/test_data/sln1/TestSolution/TestSolution.csproj +59 -0
- data/test_data/sln2/.alpaca.conf +8 -0
- data/test_data/sln2/.semver +6 -0
- data/test_data/sln2/ProjectName/ProjectName.csproj +54 -0
- data/test_data/sln2/ProjectName/Properties/AssemblyInfo.cs +36 -0
- data/test_data/sln2/ProjectName/SomeFolderInProject/SomeClass.cs +16 -0
- data/test_data/sln2/ProjectName2/ProjectName2.csproj +58 -0
- data/test_data/sln2/ProjectName2/Properties/AssemblyInfo.cs +37 -0
- data/test_data/sln2/SolutionName.sln +34 -0
- data/test_data/sln2/Unit.Tests/Properties/AssemblyInfo.cs +36 -0
- data/test_data/sln2/Unit.Tests/SomeClassTests.cs +21 -0
- data/test_data/sln2/Unit.Tests/Unit.Tests.csproj +65 -0
- data/test_data/sln2/Unit.Tests/packages.config +4 -0
- data/test_data/sln3/TestSolution.nobuild.sln +22 -0
- data/test_data/sln3/TestSolution/App.config +6 -0
- data/test_data/sln3/TestSolution/Program.cs +16 -0
- data/test_data/sln3/TestSolution/Properties/AssemblyInfo.cs +36 -0
- data/test_data/sln3/TestSolution/TestSolution.nobuild.csproj +59 -0
- metadata +309 -0
|
@@ -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("Unit.Tests")]
|
|
9
|
+
[assembly: AssemblyDescription("")]
|
|
10
|
+
[assembly: AssemblyConfiguration("")]
|
|
11
|
+
[assembly: AssemblyCompany("")]
|
|
12
|
+
[assembly: AssemblyProduct("Unit.Tests")]
|
|
13
|
+
[assembly: AssemblyCopyright("Copyright © 2015")]
|
|
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("3566b5c0-38ee-47aa-b09c-07cc1ecbd8bd")]
|
|
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,21 @@
|
|
|
1
|
+
using NUnit.Framework;
|
|
2
|
+
using ProjectName.SomeFolderInProject;
|
|
3
|
+
|
|
4
|
+
namespace ProjectName2
|
|
5
|
+
{
|
|
6
|
+
[TestFixture]
|
|
7
|
+
class SomeClassTests
|
|
8
|
+
{
|
|
9
|
+
[Test]
|
|
10
|
+
public void TestDoSomeWork()
|
|
11
|
+
{
|
|
12
|
+
Assert.That(new SomeClass().DoSomeWork(1, 2), Is.EqualTo(3));
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
[Test]
|
|
16
|
+
public void FailingTestDoSomeWork()
|
|
17
|
+
{
|
|
18
|
+
Assert.That(new SomeClass().DoSomeWork(5, 2), Is.EqualTo(4));
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
4
|
+
<PropertyGroup>
|
|
5
|
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
6
|
+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
7
|
+
<ProjectGuid>{3566B5C0-38EE-47AA-B09C-07CC1ECBD8BD}</ProjectGuid>
|
|
8
|
+
<OutputType>Library</OutputType>
|
|
9
|
+
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
10
|
+
<RootNamespace>Unit.Tests</RootNamespace>
|
|
11
|
+
<AssemblyName>Unit.Tests</AssemblyName>
|
|
12
|
+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
13
|
+
<FileAlignment>512</FileAlignment>
|
|
14
|
+
</PropertyGroup>
|
|
15
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
16
|
+
<DebugSymbols>true</DebugSymbols>
|
|
17
|
+
<DebugType>full</DebugType>
|
|
18
|
+
<Optimize>false</Optimize>
|
|
19
|
+
<OutputPath>bin\Debug\</OutputPath>
|
|
20
|
+
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
21
|
+
<ErrorReport>prompt</ErrorReport>
|
|
22
|
+
<WarningLevel>4</WarningLevel>
|
|
23
|
+
</PropertyGroup>
|
|
24
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
25
|
+
<DebugType>pdbonly</DebugType>
|
|
26
|
+
<Optimize>true</Optimize>
|
|
27
|
+
<OutputPath>bin\Release\</OutputPath>
|
|
28
|
+
<DefineConstants>TRACE</DefineConstants>
|
|
29
|
+
<ErrorReport>prompt</ErrorReport>
|
|
30
|
+
<WarningLevel>4</WarningLevel>
|
|
31
|
+
</PropertyGroup>
|
|
32
|
+
<ItemGroup>
|
|
33
|
+
<Reference Include="nunit.framework">
|
|
34
|
+
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
|
|
35
|
+
</Reference>
|
|
36
|
+
<Reference Include="System" />
|
|
37
|
+
<Reference Include="System.Core" />
|
|
38
|
+
<Reference Include="System.Xml.Linq" />
|
|
39
|
+
<Reference Include="System.Data.DataSetExtensions" />
|
|
40
|
+
<Reference Include="Microsoft.CSharp" />
|
|
41
|
+
<Reference Include="System.Data" />
|
|
42
|
+
<Reference Include="System.Xml" />
|
|
43
|
+
</ItemGroup>
|
|
44
|
+
<ItemGroup>
|
|
45
|
+
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
46
|
+
<Compile Include="SomeClassTests.cs" />
|
|
47
|
+
</ItemGroup>
|
|
48
|
+
<ItemGroup>
|
|
49
|
+
<None Include="packages.config" />
|
|
50
|
+
</ItemGroup>
|
|
51
|
+
<ItemGroup>
|
|
52
|
+
<ProjectReference Include="..\ProjectName\ProjectName.csproj">
|
|
53
|
+
<Project>{8c47099d-7bd7-4918-8831-6cf81b293148}</Project>
|
|
54
|
+
<Name>ProjectName</Name>
|
|
55
|
+
</ProjectReference>
|
|
56
|
+
</ItemGroup>
|
|
57
|
+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
58
|
+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
59
|
+
Other similar extension points exist, see Microsoft.Common.targets.
|
|
60
|
+
<Target Name="BeforeBuild">
|
|
61
|
+
</Target>
|
|
62
|
+
<Target Name="AfterBuild">
|
|
63
|
+
</Target>
|
|
64
|
+
-->
|
|
65
|
+
</Project>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
3
|
+
# Visual Studio 2013
|
|
4
|
+
VisualStudioVersion = 12.0.30723.0
|
|
5
|
+
MinimumVisualStudioVersion = 10.0.40219.1
|
|
6
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestSolution.nobuild", "TestSolution\TestSolution.nobuild.csproj", "{B9BAB17F-FD42-452B-8DE3-A85254043711}"
|
|
7
|
+
EndProject
|
|
8
|
+
Global
|
|
9
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
10
|
+
Debug|Any CPU = Debug|Any CPU
|
|
11
|
+
Release|Any CPU = Release|Any CPU
|
|
12
|
+
EndGlobalSection
|
|
13
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
14
|
+
{B9BAB17F-FD42-452B-8DE3-A85254043711}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
15
|
+
{B9BAB17F-FD42-452B-8DE3-A85254043711}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
16
|
+
{B9BAB17F-FD42-452B-8DE3-A85254043711}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
17
|
+
{B9BAB17F-FD42-452B-8DE3-A85254043711}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
18
|
+
EndGlobalSection
|
|
19
|
+
GlobalSection(SolutionProperties) = preSolution
|
|
20
|
+
HideSolutionNode = FALSE
|
|
21
|
+
EndGlobalSection
|
|
22
|
+
EndGlobal
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
using System;
|
|
2
|
+
using System.Collections.Generic;
|
|
3
|
+
using System.Linq;
|
|
4
|
+
using System.Text;
|
|
5
|
+
using System.Threading.Tasks;
|
|
6
|
+
|
|
7
|
+
namespace TestSolution
|
|
8
|
+
{
|
|
9
|
+
class Program
|
|
10
|
+
{
|
|
11
|
+
static void Main(string[] args)
|
|
12
|
+
{
|
|
13
|
+
Console.WriteLine("hello world");
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -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.nobuild")]
|
|
9
|
+
[assembly: AssemblyDescription("")]
|
|
10
|
+
[assembly: AssemblyConfiguration("")]
|
|
11
|
+
[assembly: AssemblyCompany("")]
|
|
12
|
+
[assembly: AssemblyProduct("TestSolution.nobuild")]
|
|
13
|
+
[assembly: AssemblyCopyright("Copyright © 2015")]
|
|
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("05d009d1-c89a-43f8-a609-d6066d6a58be")]
|
|
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,59 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
4
|
+
<PropertyGroup>
|
|
5
|
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
6
|
+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
7
|
+
<ProjectGuid>{B9BAB17F-FD42-452B-8DE3-A85254043711}</ProjectGuid>
|
|
8
|
+
<OutputType>Exe</OutputType>
|
|
9
|
+
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
10
|
+
<RootNamespace>TestSolution.nobuild</RootNamespace>
|
|
11
|
+
<AssemblyName>TestSolution.nobuild</AssemblyName>
|
|
12
|
+
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
|
13
|
+
<FileAlignment>512</FileAlignment>
|
|
14
|
+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
15
|
+
</PropertyGroup>
|
|
16
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
17
|
+
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
18
|
+
<DebugSymbols>true</DebugSymbols>
|
|
19
|
+
<DebugType>full</DebugType>
|
|
20
|
+
<Optimize>false</Optimize>
|
|
21
|
+
<OutputPath>bin\Debug\</OutputPath>
|
|
22
|
+
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
23
|
+
<ErrorReport>prompt</ErrorReport>
|
|
24
|
+
<WarningLevel>4</WarningLevel>
|
|
25
|
+
</PropertyGroup>
|
|
26
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
27
|
+
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
28
|
+
<DebugType>pdbonly</DebugType>
|
|
29
|
+
<Optimize>true</Optimize>
|
|
30
|
+
<OutputPath>bin\Release\</OutputPath>
|
|
31
|
+
<DefineConstants>TRACE</DefineConstants>
|
|
32
|
+
<ErrorReport>prompt</ErrorReport>
|
|
33
|
+
<WarningLevel>4</WarningLevel>
|
|
34
|
+
</PropertyGroup>
|
|
35
|
+
<ItemGroup>
|
|
36
|
+
<Reference Include="System" />
|
|
37
|
+
<Reference Include="System.Core" />
|
|
38
|
+
<Reference Include="System.Xml.Linq" />
|
|
39
|
+
<Reference Include="System.Data.DataSetExtensions" />
|
|
40
|
+
<Reference Include="Microsoft.CSharp" />
|
|
41
|
+
<Reference Include="System.Data" />
|
|
42
|
+
<Reference Include="System.Xml" />
|
|
43
|
+
</ItemGroup>
|
|
44
|
+
<ItemGroup>
|
|
45
|
+
<Compile Include="Program.cs" />
|
|
46
|
+
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
47
|
+
</ItemGroup>
|
|
48
|
+
<ItemGroup>
|
|
49
|
+
<None Include="App.config" />
|
|
50
|
+
</ItemGroup>
|
|
51
|
+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
52
|
+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
53
|
+
Other similar extension points exist, see Microsoft.Common.targets.
|
|
54
|
+
<Target Name="BeforeBuild">
|
|
55
|
+
</Target>
|
|
56
|
+
<Target Name="AfterBuild">
|
|
57
|
+
</Target>
|
|
58
|
+
-->
|
|
59
|
+
</Project>
|
metadata
ADDED
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: alpacabuildtool
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Vasyl Purchel
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-05-10 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rake
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rdoc
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: cucumber
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 2.0.0
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 2.0.0
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rspec
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 3.2.0
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 3.2.0
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: fakefs
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: rubocop
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 0.30.1
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 0.30.1
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: bundler
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '1.6'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '1.6'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: simplecov
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - "~>"
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '0.7'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - "~>"
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '0.7'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: gli
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - '='
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: 2.13.0
|
|
132
|
+
type: :runtime
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - '='
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: 2.13.0
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: rainbow
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - ">="
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '0'
|
|
146
|
+
type: :runtime
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - ">="
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '0'
|
|
153
|
+
description:
|
|
154
|
+
email: vasyl.purchel@gmail.com
|
|
155
|
+
executables:
|
|
156
|
+
- alpaca
|
|
157
|
+
extensions: []
|
|
158
|
+
extra_rdoc_files:
|
|
159
|
+
- README.rdoc
|
|
160
|
+
- alpacabuildtool.rdoc
|
|
161
|
+
files:
|
|
162
|
+
- ".gitignore"
|
|
163
|
+
- ".rubocop.yml"
|
|
164
|
+
- ".semver"
|
|
165
|
+
- ".travis.yml"
|
|
166
|
+
- CHANGELOG
|
|
167
|
+
- Gemfile
|
|
168
|
+
- LICENSE
|
|
169
|
+
- README.md
|
|
170
|
+
- README.rdoc
|
|
171
|
+
- Rakefile
|
|
172
|
+
- alpacabuildtool.gemspec
|
|
173
|
+
- alpacabuildtool.rdoc
|
|
174
|
+
- alpacabuildtool.todo
|
|
175
|
+
- bin/alpaca
|
|
176
|
+
- features/alpaca.feature
|
|
177
|
+
- features/step_definitions/alpaca_steps.rb
|
|
178
|
+
- features/step_definitions/visual_studio_solutions_steps.rb
|
|
179
|
+
- features/support/env.rb
|
|
180
|
+
- features/visual_studio_solutions.feature
|
|
181
|
+
- lib/alpacabuildtool.rb
|
|
182
|
+
- lib/alpacabuildtool/application.rb
|
|
183
|
+
- lib/alpacabuildtool/configuration.rb
|
|
184
|
+
- lib/alpacabuildtool/data/.alpaca.conf
|
|
185
|
+
- lib/alpacabuildtool/data/doom.flf
|
|
186
|
+
- lib/alpacabuildtool/data/logo.jpg
|
|
187
|
+
- lib/alpacabuildtool/entities/nuspec.rb
|
|
188
|
+
- lib/alpacabuildtool/entities/project.rb
|
|
189
|
+
- lib/alpacabuildtool/entities/solution.rb
|
|
190
|
+
- lib/alpacabuildtool/entities/xml.rb
|
|
191
|
+
- lib/alpacabuildtool/entities/xml_node.rb
|
|
192
|
+
- lib/alpacabuildtool/log/font.rb
|
|
193
|
+
- lib/alpacabuildtool/log/log.rb
|
|
194
|
+
- lib/alpacabuildtool/log/rainbowify_formatter.rb
|
|
195
|
+
- lib/alpacabuildtool/log/rainbowify_logger.rb
|
|
196
|
+
- lib/alpacabuildtool/managers/build_manager.rb
|
|
197
|
+
- lib/alpacabuildtool/managers/package_manager.rb
|
|
198
|
+
- lib/alpacabuildtool/managers/report_manager.rb
|
|
199
|
+
- lib/alpacabuildtool/managers/test_manager.rb
|
|
200
|
+
- lib/alpacabuildtool/os.rb
|
|
201
|
+
- lib/alpacabuildtool/package_types/project_package.rb
|
|
202
|
+
- lib/alpacabuildtool/package_types/tool_package.rb
|
|
203
|
+
- lib/alpacabuildtool/tools/git.rb
|
|
204
|
+
- lib/alpacabuildtool/tools/msbuild.rb
|
|
205
|
+
- lib/alpacabuildtool/tools/nuget.rb
|
|
206
|
+
- lib/alpacabuildtool/tools/nunit.rb
|
|
207
|
+
- lib/alpacabuildtool/tools/nunit_orange.rb
|
|
208
|
+
- lib/alpacabuildtool/tools/open_cover.rb
|
|
209
|
+
- lib/alpacabuildtool/tools/report_generator.rb
|
|
210
|
+
- lib/alpacabuildtool/tools/tool.rb
|
|
211
|
+
- lib/alpacabuildtool/tools/wrapper.rb
|
|
212
|
+
- lib/alpacabuildtool/versioning/version.rb
|
|
213
|
+
- lib/alpacabuildtool/versioning/versioning.rb
|
|
214
|
+
- spec/lib/alpacabuildtool/configuration_spec.rb
|
|
215
|
+
- spec/lib/alpacabuildtool/entities/xml_spec.rb
|
|
216
|
+
- spec/lib/alpacabuildtool/versioning/version_spec.rb
|
|
217
|
+
- spec/lib/alpacabuildtool/versioning/versioning_spec.rb
|
|
218
|
+
- spec/spec_helper.rb
|
|
219
|
+
- spec/support/coverage.rb
|
|
220
|
+
- test_data/sln1/.alpaca.conf
|
|
221
|
+
- test_data/sln1/.semver
|
|
222
|
+
- test_data/sln1/TestSolution.sln
|
|
223
|
+
- test_data/sln1/TestSolution/App.config
|
|
224
|
+
- test_data/sln1/TestSolution/Program.cs
|
|
225
|
+
- test_data/sln1/TestSolution/Properties/AssemblyInfo.cs
|
|
226
|
+
- test_data/sln1/TestSolution/TestSolution.csproj
|
|
227
|
+
- test_data/sln2/.alpaca.conf
|
|
228
|
+
- test_data/sln2/.semver
|
|
229
|
+
- test_data/sln2/ProjectName/ProjectName.csproj
|
|
230
|
+
- test_data/sln2/ProjectName/Properties/AssemblyInfo.cs
|
|
231
|
+
- test_data/sln2/ProjectName/SomeFolderInProject/SomeClass.cs
|
|
232
|
+
- test_data/sln2/ProjectName2/ProjectName2.csproj
|
|
233
|
+
- test_data/sln2/ProjectName2/Properties/AssemblyInfo.cs
|
|
234
|
+
- test_data/sln2/SolutionName.sln
|
|
235
|
+
- test_data/sln2/Unit.Tests/Properties/AssemblyInfo.cs
|
|
236
|
+
- test_data/sln2/Unit.Tests/SomeClassTests.cs
|
|
237
|
+
- test_data/sln2/Unit.Tests/Unit.Tests.csproj
|
|
238
|
+
- test_data/sln2/Unit.Tests/packages.config
|
|
239
|
+
- test_data/sln3/TestSolution.nobuild.sln
|
|
240
|
+
- test_data/sln3/TestSolution/App.config
|
|
241
|
+
- test_data/sln3/TestSolution/Program.cs
|
|
242
|
+
- test_data/sln3/TestSolution/Properties/AssemblyInfo.cs
|
|
243
|
+
- test_data/sln3/TestSolution/TestSolution.nobuild.csproj
|
|
244
|
+
homepage: https://github.com/vasyl-purchel/alpaca
|
|
245
|
+
licenses:
|
|
246
|
+
- MIT
|
|
247
|
+
metadata: {}
|
|
248
|
+
post_install_message:
|
|
249
|
+
rdoc_options:
|
|
250
|
+
- "--title"
|
|
251
|
+
- AlpacaBuildTool
|
|
252
|
+
- "--main"
|
|
253
|
+
- README.rdoc
|
|
254
|
+
- "-ri"
|
|
255
|
+
require_paths:
|
|
256
|
+
- lib
|
|
257
|
+
- lib
|
|
258
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
259
|
+
requirements:
|
|
260
|
+
- - ">="
|
|
261
|
+
- !ruby/object:Gem::Version
|
|
262
|
+
version: '0'
|
|
263
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
264
|
+
requirements:
|
|
265
|
+
- - ">="
|
|
266
|
+
- !ruby/object:Gem::Version
|
|
267
|
+
version: '0'
|
|
268
|
+
requirements: []
|
|
269
|
+
rubyforge_project:
|
|
270
|
+
rubygems_version: 2.4.5
|
|
271
|
+
signing_key:
|
|
272
|
+
specification_version: 4
|
|
273
|
+
summary: yet another build tool for Visual Studio solutions
|
|
274
|
+
test_files:
|
|
275
|
+
- features/alpaca.feature
|
|
276
|
+
- features/step_definitions/alpaca_steps.rb
|
|
277
|
+
- features/step_definitions/visual_studio_solutions_steps.rb
|
|
278
|
+
- features/support/env.rb
|
|
279
|
+
- features/visual_studio_solutions.feature
|
|
280
|
+
- spec/lib/alpacabuildtool/configuration_spec.rb
|
|
281
|
+
- spec/lib/alpacabuildtool/entities/xml_spec.rb
|
|
282
|
+
- spec/lib/alpacabuildtool/versioning/version_spec.rb
|
|
283
|
+
- spec/lib/alpacabuildtool/versioning/versioning_spec.rb
|
|
284
|
+
- spec/spec_helper.rb
|
|
285
|
+
- spec/support/coverage.rb
|
|
286
|
+
- test_data/sln1/.alpaca.conf
|
|
287
|
+
- test_data/sln1/.semver
|
|
288
|
+
- test_data/sln1/TestSolution.sln
|
|
289
|
+
- test_data/sln1/TestSolution/App.config
|
|
290
|
+
- test_data/sln1/TestSolution/Program.cs
|
|
291
|
+
- test_data/sln1/TestSolution/Properties/AssemblyInfo.cs
|
|
292
|
+
- test_data/sln1/TestSolution/TestSolution.csproj
|
|
293
|
+
- test_data/sln2/.alpaca.conf
|
|
294
|
+
- test_data/sln2/.semver
|
|
295
|
+
- test_data/sln2/ProjectName/ProjectName.csproj
|
|
296
|
+
- test_data/sln2/ProjectName/Properties/AssemblyInfo.cs
|
|
297
|
+
- test_data/sln2/ProjectName/SomeFolderInProject/SomeClass.cs
|
|
298
|
+
- test_data/sln2/ProjectName2/ProjectName2.csproj
|
|
299
|
+
- test_data/sln2/ProjectName2/Properties/AssemblyInfo.cs
|
|
300
|
+
- test_data/sln2/SolutionName.sln
|
|
301
|
+
- test_data/sln2/Unit.Tests/Properties/AssemblyInfo.cs
|
|
302
|
+
- test_data/sln2/Unit.Tests/SomeClassTests.cs
|
|
303
|
+
- test_data/sln2/Unit.Tests/Unit.Tests.csproj
|
|
304
|
+
- test_data/sln2/Unit.Tests/packages.config
|
|
305
|
+
- test_data/sln3/TestSolution.nobuild.sln
|
|
306
|
+
- test_data/sln3/TestSolution/App.config
|
|
307
|
+
- test_data/sln3/TestSolution/Program.cs
|
|
308
|
+
- test_data/sln3/TestSolution/Properties/AssemblyInfo.cs
|
|
309
|
+
- test_data/sln3/TestSolution/TestSolution.nobuild.csproj
|