bake-toolkit 2.10.2 → 2.10.3
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 +4 -4
- data/doc/further/change.html +5 -0
- data/doc/index.html +1 -1
- data/lib/blocks/commandLine.rb +3 -3
- data/lib/blocks/docu.rb +1 -1
- data/lib/blocks/executable.rb +1 -1
- data/lib/blocks/library.rb +1 -1
- data/lib/blocks/makefile.rb +4 -4
- data/lib/common/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ffeb560153458991dc570f4bc2593cb71224438
|
|
4
|
+
data.tar.gz: fb35507be4a8527f87ff3b0e5f0d851d05de3ff8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bee037b5e82b3fcb85179ec4b190f19238fdf61d4c664b50a27d4a19a0963462cb4bca93a3cfc7338d2ecebff2fb8cbb235b61936c21d19fe08840824536f232
|
|
7
|
+
data.tar.gz: 4f561295d1dfba867a7dbb097914e784a5047dfa511fe3f424adbbfd8f86ce5f958795a2634c9bc84076e539358b264d56a9b467854b1fd37f30a2d9d594adf7
|
data/doc/further/change.html
CHANGED
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|
<body>
|
|
8
8
|
<h1>Changelog</h1>
|
|
9
9
|
|
|
10
|
+
July 6, 2015 - bake-toolkit 2.10.3<br>
|
|
11
|
+
<ul>
|
|
12
|
+
<li><b>Bugfix: Build stopped unintentionally when using -r</b>
|
|
13
|
+
</ul>
|
|
14
|
+
|
|
10
15
|
July 3, 2015 - bake-toolkit 2.10.2<br>
|
|
11
16
|
<ul>
|
|
12
17
|
<li><b>Bugfix: PostSteps were unintentionally executed if a dependent step (e.g. linking) was not executed due to an error in another project (e.g. compiler error)</b>
|
data/doc/index.html
CHANGED
|
@@ -74,7 +74,7 @@ bake is used to build software <font color="#009900"><b>fast</b></font> and <fon
|
|
|
74
74
|
|
|
75
75
|
<p>
|
|
76
76
|
<hr>
|
|
77
|
-
<table width="100%" border="0"><tr><td align="left">Described bake-toolkit version: 2.10.
|
|
77
|
+
<table width="100%" border="0"><tr><td align="left">Described bake-toolkit version: 2.10.3</td><td align="right">July 6, 2015</td></tr></table>
|
|
78
78
|
|
|
79
79
|
</body>
|
|
80
80
|
|
data/lib/blocks/commandLine.rb
CHANGED
|
@@ -13,15 +13,15 @@ module Bake
|
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
def execute
|
|
16
|
-
executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
16
|
+
return executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
def startupStep
|
|
20
|
-
executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
20
|
+
return executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
def exitStep
|
|
24
|
-
executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
24
|
+
return executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def clean
|
data/lib/blocks/docu.rb
CHANGED
data/lib/blocks/executable.rb
CHANGED
data/lib/blocks/library.rb
CHANGED
data/lib/blocks/makefile.rb
CHANGED
|
@@ -74,19 +74,19 @@ module Bake
|
|
|
74
74
|
end
|
|
75
75
|
|
|
76
76
|
def execute
|
|
77
|
-
executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
77
|
+
return executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
78
78
|
end
|
|
79
79
|
|
|
80
80
|
def startupStep
|
|
81
|
-
executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
81
|
+
return executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
def exitStep
|
|
85
|
-
executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
85
|
+
return executeCommand(@commandLine, nil, @config.validExitCodes)
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
def clean
|
|
89
|
-
executeCommand(@cleanLine, "No rule to make target 'clean'.", @config.validExitCodes) unless Bake.options.filename
|
|
89
|
+
return executeCommand(@cleanLine, "No rule to make target 'clean'.", @config.validExitCodes) unless Bake.options.filename
|
|
90
90
|
end
|
|
91
91
|
|
|
92
92
|
end
|
data/lib/common/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bake-toolkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.10.
|
|
4
|
+
version: 2.10.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Schaal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rtext
|