dev_tasks 1.0.5 → 1.0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ecf7b7afe0b714068ff0174e21c3713b81d5e406
4
- data.tar.gz: 5cdbe6084f952559b686f4d0c7dd44df249b3acd
3
+ metadata.gz: c4a1b7684e83016248f9bd3267c44b2ca172a501
4
+ data.tar.gz: a5bb3336140a0af7aeb3db41431dd61f9fa0705c
5
5
  SHA512:
6
- metadata.gz: 37a285d8812b5db93ef05a60ebcaf473c0d1e7bea0f4f9a61300dffb86d62841d6990859d15936172737a5856099bd04097c94e8ff44cb3551729fbebb3952c9
7
- data.tar.gz: 970af1c0fc5a241b14858da55666f4f2bf56a9d8f619c70b6ac090864258ed32232b3dcce5f65a37e7fca9579939e47d8bf10cdb8488f19e531cde08ef1d65c4
6
+ metadata.gz: 3394ebec51ccae0f7a0a57c58971c6cfc7c94c9fc9250772c4eeeecbfc1ea671c10bed3340b2623fbf66e42edd89b18859fb9434b1dfabe8895caca1b80895aa
7
+ data.tar.gz: b2032fcaff580163e5f88ef13f749b2ef5b8ae25d66974762cde881fd7d4b1c25552ae982e4ea9a9589361f88b41bc08384f7cbafd404b1a755492dcf6a00267
data/lib/dev_tasks.rb CHANGED
@@ -48,6 +48,7 @@ class DevTasks < Hash
48
48
  self[:files][:source].include('**/*.{m,xcodeproj,xib}')
49
49
  self[:files][:source].include('**/*.{xaml,xml,yaml,yml,json,md,txt}')
50
50
  self[:files][:source].include('**/{Jamfile,.semver,Gemfile,README,LICENSE}')
51
+ self[:files][:source].exclude("log/*.*")
51
52
 
52
53
  self[:files][:build]=Rake::FileList.new('**/*.{gemspec,sln}')
53
54
 
data/lib/setup.rb CHANGED
@@ -5,6 +5,7 @@ class Setup < CommandArray
5
5
  if(defined?(DEV_TASKS))
6
6
  DEV_TASKS[:svn_exports].each{|k,v|
7
7
  if(!File.exists?("#{Environment.dev_root}/dep/#{k}"))
8
+ FileUtils.mkdir_p(File.dirname("#{Environment.dev_root}/dep/#{k}")) if !File.exists?("#{Environment.dev_root}/dep/#{k}")
8
9
  dest="#{Environment.dev_root}/dep/#{k}"
9
10
  add "svn export #{v} #{Environment.dev_root}/dep/#{k}" if !dest.include?("@")
10
11
  add "svn export #{v} #{Environment.dev_root}/dep/#{k}@" if dest.include?("@")
data/lib/spec.json CHANGED
@@ -1 +1 @@
1
- {"name":"dev_tasks","version":"1.0.5"}
1
+ {"name":"dev_tasks","version":"1.0.6"}
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "helloDll",
3
+ "svn_exports": {
4
+ },
5
+ "scm": "none",
6
+ "scm_origin": "",
7
+ "branch": null,
8
+ "command_order": [
9
+ "pull",
10
+ "upgrade",
11
+ "setup",
12
+ "add",
13
+ "build",
14
+ "test",
15
+ "commit",
16
+ "push",
17
+ "verify",
18
+ "publish"
19
+ ],
20
+ "relative_directory": "LEP-open/dev_tasks.gem/spec/test_data/csharp_projects/helloDll",
21
+ "working_directory": "Z:/wrk/LEP-open/dev_tasks.gem/spec/test_data/csharp_projects/helloDll",
22
+ "context": "wrk",
23
+ "machine": "YELLOWFIN",
24
+ "platform": "x64-mingw32",
25
+ "dev_root": "Z:",
26
+ "settings": {
27
+ "colorize": true
28
+ },
29
+ "files": {
30
+ "source": "rakefile.rb Properties/AssemblyInfo.cs helloDll.Net2.0.csproj helloDll.Net3.5.csproj helloDll.Net4.0.csproj helloDll.Net4.5.csproj helloDll.cs helloDll.sln DEV.default..json log/DEV.default.json log/DEV.default.yml obj/Debug/helloDll.Net2.0.csproj.FileListAbsolute.txt obj/Debug/helloDll.Net3.5.csproj.FileListAbsolute.txt obj/Debug/helloDll.Net4.0.csproj.FileListAbsolute.txt obj/Debug/helloDll.Net4.5.csproj.FileListAbsolute.txt obj/Release/helloDll.Net2.0.csproj.FileListAbsolute.txt obj/Release/helloDll.Net3.5.csproj.FileListAbsolute.txt obj/Release/helloDll.Net4.0.csproj.FileListAbsolute.txt obj/Release/helloDll.Net4.5.csproj.FileListAbsolute.txt",
31
+ "build": "helloDll.sln",
32
+ "artifact": "bin/Net2.0/Debug/helloDll.dll bin/Net2.0/Release/helloDll.dll bin/Net3.5/Debug/helloDll.dll bin/Net3.5/Release/helloDll.dll bin/Net4.0/Debug/helloDll.dll bin/Net4.0/Release/helloDll.dll bin/Net4.5/Debug/helloDll.dll bin/Net4.5/Release/helloDll.dll obj/Debug/helloDll.dll obj/Release/helloDll.dll"
33
+ },
34
+ "commands": {
35
+ "build": [
36
+ {
37
+ "input": "\"C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\msbuild.exe\" \"helloDll.sln\" /nologo /p:Configuration=Debug /p:Platform=\"Any CPU\"",
38
+ "timeout": 0,
39
+ "directory": "",
40
+ "exit_code": "pid 6440 exit 0",
41
+ "output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 1/2/2015 7:50:11 PM.\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" on node 1 (default targets).\nValidateSolutionConfiguration:\n Building solution configuration \"Debug|Any CPU\".\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (2) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.0 -> Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (3) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net2.0 -> Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (4) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net3.5 -> Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (5) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.5 -> Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Debug\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default target) (3) ->\n(ResolveAssemblyReferences target) -> \n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default target) (4) ->\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\n\n 7 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:00.25\n",
42
+ "error": "",
43
+ "machine_name": "",
44
+ "user_name": "",
45
+ "start_time": "2015-01-02 19:50:11 -0700",
46
+ "end_time": "2015-01-02 19:50:11 -0700",
47
+ "elapsed": "[0s]"
48
+ },
49
+ {
50
+ "input": "\"C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\msbuild.exe\" \"helloDll.sln\" /nologo /p:Configuration=Release /p:Platform=\"Any CPU\"",
51
+ "timeout": 0,
52
+ "directory": "",
53
+ "exit_code": "pid 4724 exit 0",
54
+ "output": "Building the projects in this solution one at a time. To enable parallel build, please add the \"/m\" switch.\nBuild started 1/2/2015 7:50:11 PM.\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" on node 1 (default targets).\nValidateSolutionConfiguration:\n Building solution configuration \"Release|Any CPU\".\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (2) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.0 -> Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (3) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net2.0 -> Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net2.0\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (4) on node 1 (default targets).\nC:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net3.5 -> Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net3.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default targets).\nProject \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (1) is building \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (5) on node 1 (default targets).\nGenerateTargetFrameworkMonikerAttribute:\nSkipping target \"GenerateTargetFrameworkMonikerAttribute\" because all output files are up-to-date with respect to the input files.\nCoreCompile:\nSkipping target \"CoreCompile\" because all output files are up-to-date with respect to the input files.\nCopyFilesToOutputDirectory:\n helloDll.Net4.5 -> Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\bin\\Net4.5\\Release\\helloDll.dll\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net4.5.csproj\" (default targets).\nDone Building Project \"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default targets).\n\nBuild succeeded.\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj\" (default target) (3) ->\n(ResolveAssemblyReferences target) -> \n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Core\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Core\" or retarget your application to a framework version which contains \"System.Core\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Xml.Linq\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3268: The primary reference \"System.Data.DataSetExtensions\" could not be resolved because it has an indirect dependency on the framework assembly \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" which could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Xml.Linq\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Xml.Linq\" or retarget your application to a framework version which contains \"System.Xml.Linq\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"System.Data.DataSetExtensions\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"System.Data.DataSetExtensions\" or retarget your application to a framework version which contains \"System.Data.DataSetExtensions\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v2.0\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net2.0.csproj]\n\n\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.sln\" (default target) (1) ->\n\"Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj\" (default target) (4) ->\n C:\\Program Files (x86)\\MSBuild\\12.0\\bin\\Microsoft.Common.CurrentVersion.targets(1697,5): warning MSB3267: The primary reference \"Microsoft.CSharp\", which is a framework assembly, could not be resolved in the currently targeted framework. \".NETFramework,Version=v3.5\". To resolve this problem, either remove the reference \"Microsoft.CSharp\" or retarget your application to a framework version which contains \"Microsoft.CSharp\". [Z:\\wrk\\LEP-open\\dev_tasks.gem\\spec\\test_data\\csharp_projects\\helloDll\\helloDll.Net3.5.csproj]\n\n 7 Warning(s)\n 0 Error(s)\n\nTime Elapsed 00:00:00.25\n",
55
+ "error": "",
56
+ "machine_name": "",
57
+ "user_name": "",
58
+ "start_time": "2015-01-02 19:50:11 -0700",
59
+ "end_time": "2015-01-02 19:50:12 -0700",
60
+ "elapsed": "[0s]"
61
+ }
62
+ ]
63
+ },
64
+ "dependencies": {
65
+ "C#": {
66
+ "system": [
67
+ "Microsoft.CSharp",
68
+ "System",
69
+ "System.Core",
70
+ "System.Data",
71
+ "System.Data.DataSetExtensions",
72
+ "System.Xml",
73
+ "System.Xml.Linq"
74
+ ]
75
+ }
76
+ },
77
+ "newest_source_file": "log/DEV.default.json",
78
+ "newest_artifact_file": "bin/Net2.0/Debug/helloDll.dll",
79
+ "up_to_date": false
80
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev_tasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lou Parslow
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: rspec
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -112,6 +126,7 @@ files:
112
126
  - spec/test_data/ruby_projects/helloGem/rakefile.rb
113
127
  - spec/test_data/cpp_projects/helloLib/DEV.default..json
114
128
  - spec/test_data/csharp_projects/helloDll/DEV.default..json
129
+ - spec/test_data/csharp_projects/helloDll/log/DEV.default.json
115
130
  - spec/test_data/ruby_projects/helloGem/log/DEV.json
116
131
  - spec/test_data/csharp_projects/helloDll/helloDll.Net2.0.csproj
117
132
  - spec/test_data/csharp_projects/helloDll/helloDll.Net3.5.csproj
@@ -121,7 +136,6 @@ files:
121
136
  - spec/test_data/csharp_projects/JsonNet.Test.csproj
122
137
  - spec/test_data/csharp_projects/QcNet.csproj
123
138
  - LICENSE
124
- - README
125
139
  homepage: http://rubygems.org/gems/dev_tasks
126
140
  licenses:
127
141
  - Apache 2.0
@@ -142,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
156
  version: '0'
143
157
  requirements: []
144
158
  rubyforge_project:
145
- rubygems_version: 2.0.3
159
+ rubygems_version: 2.0.14
146
160
  signing_key:
147
161
  specification_version: 4
148
162
  summary: development rake tasks
data/README DELETED
@@ -1,46 +0,0 @@
1
- =dev_tasks {<img src="https://badge.fury.io/rb/dev_tasks.png" alt="Gem Version" />}[http://badge.fury.io/rb/dev_tasks]
2
- A ruby gem to aid in the definition of various rake tasks.
3
- The dev_tasks gem defines a constant DEV
4
-
5
- ==Installation
6
- The gem can be installed by the single command
7
- gem install dev_task
8
-
9
- ==Usage
10
- This is an example of a simple usage
11
- require 'dev_tasks'
12
-
13
- ==Tasks
14
- :add:: adds files designated by DEV [:files] [:source] to revision control system (if applicable).
15
-
16
- :build:: executed a sequence of build commands. recognized files in DEV [:files] [:build] will have corresponding build commands automatically added.
17
-
18
- :test:: executes a sequence of test commands. recognized files in DEV [:files] [:test] will have corresponding build commands automatically added.
19
-
20
- :commit:: commits outstanding changed to revision controls system (if applicable).
21
- ==Keys
22
- DEV [:files] [:source]::
23
- a FileList defining source files.
24
- Examples::
25
- ===adding files to existing FileList
26
- DEV[:files][:source].include('**/*{js,bash}')
27
- ===defining a new FileList
28
- DEV[:files][:source]=FileList.new('**/*{rb,json}')
29
-
30
- ==CommandArrays
31
- DEV [:commands] [:add]::
32
-
33
- ==License
34
- Copyright 2014 Lou Parslow
35
-
36
- Licensed under the Apache License, Version 2.0 (the "License");
37
- you may not use this file except in compliance with the License.
38
- You may obtain a copy of the License at
39
-
40
- http://www.apache.org/licenses/LICENSE-2.0
41
-
42
- Unless required by applicable law or agreed to in writing, software
43
- distributed under the License is distributed on an "AS IS" BASIS,
44
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45
- See the License for the specific language governing permissions and
46
- limitations under the License.