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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5365f13f88505155d688084570e9d67aec07dafc
4
- data.tar.gz: dca5e6549dc63394b6d334f9e6b9bcb4b0ca514c
3
+ metadata.gz: 9ffeb560153458991dc570f4bc2593cb71224438
4
+ data.tar.gz: fb35507be4a8527f87ff3b0e5f0d851d05de3ff8
5
5
  SHA512:
6
- metadata.gz: da6ee5cde9a105e3db93f6c382f095c353fa1af1b3bce008b83a84dcb04c0c08506f8c50d5efbf7bc53bde6f3b4f3ee8e8d0d40b59d1c5418bc40597d17025f8
7
- data.tar.gz: 4a373da831f7bb5d5f606184f54118e8d8fac7817a1a4f327021e03e9c07625ba4b5c93ea79e4d7acf993ff22c59cd1f17921f0baeba03dbc83e3d3f0954d12f
6
+ metadata.gz: bee037b5e82b3fcb85179ec4b190f19238fdf61d4c664b50a27d4a19a0963462cb4bca93a3cfc7338d2ecebff2fb8cbb235b61936c21d19fe08840824536f232
7
+ data.tar.gz: 4f561295d1dfba867a7dbb097914e784a5047dfa511fe3f424adbbfd8f86ce5f958795a2634c9bc84076e539358b264d56a9b467854b1fd37f30a2d9d594adf7
@@ -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.2</td><td align="right">July 3, 2015</td></tr></table>
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
 
@@ -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
@@ -15,7 +15,7 @@ module Bake
15
15
  if @commandLine.empty?
16
16
  Bake.formatter.printInfo("No documentation command specified", @config)
17
17
  else
18
- executeCommand(@commandLine)
18
+ return executeCommand(@commandLine)
19
19
  end
20
20
  return true
21
21
  end
@@ -97,7 +97,7 @@ module Bake
97
97
  cmdLineCheck = true
98
98
  reason = config_changed?(cmdLineFile)
99
99
  end
100
- return unless reason
100
+ return true unless reason
101
101
 
102
102
 
103
103
 
@@ -49,7 +49,7 @@ module Bake
49
49
  cmdLineCheck = true
50
50
  reason = config_changed?(cmdLineFile)
51
51
  end
52
- return unless reason
52
+ return true unless reason
53
53
  archiver = @tcs[:ARCHIVER]
54
54
 
55
55
  cmd = Utils.flagSplit(archiver[:COMMAND], false) # ar
@@ -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
@@ -1,7 +1,7 @@
1
1
  module Bake
2
2
  class Version
3
3
  def self.number
4
- "2.10.2"
4
+ "2.10.3"
5
5
  end
6
6
  end
7
7
 
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.2
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-03 00:00:00.000000000 Z
11
+ date: 2015-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rtext