bake-toolkit 2.43.0 → 2.43.1

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: 979457d55561c9d98081d4a922d1af5cbcc4e1d9
4
- data.tar.gz: 63ce64c5b31fe8ba2ebba2ee8ae4d28858ed8e93
3
+ metadata.gz: 5bf99aa3c7bd2e574dcad3684af05e63bb690cb4
4
+ data.tar.gz: cda7a830ec6887a6407a76d1837ede7672c70502
5
5
  SHA512:
6
- metadata.gz: 76371243a25ea2d8d703c775996d76fbb635f0a4b7326ac23087db2e3db4fc1f2b3e4d672b6b905d37485a8efbbdf54faf13663bb1386cd81abc25712fa0275e
7
- data.tar.gz: 04e358efa264dc5f433f919b9a9231040d61ad85ce7e3794a4c2bc82ef93e35f375a1231d9689ce44060c3004b69815a892735e5d7bf32a1b0fa3839acd42a2a
6
+ metadata.gz: 6707bc271086cd4020d76ddd8d7a440634fec586482c814eb23375ff330bf1f13ae45ac80c4eac247266cbe542cdd7dcc74120126776de7f4421e346083c3642
7
+ data.tar.gz: 2ba40d86c0645d6d824787b2c1e9a6e96d0ec918cdf8a150e73a12a4b989feddc16986d2df0a92ae3032ce8057f8b8c11277d9b9921afb82255ea6cddf280090
@@ -77,13 +77,13 @@ end
77
77
 
78
78
  def integrateCompiler(tcs, compiler, type)
79
79
  return tcs unless compiler
80
- if compiler.respond_to?"command"
81
- tcs[:COMPILER][type][:COMMAND] = compiler.command if compiler.command != ""
80
+ if compiler.respond_to?("command") && compiler.command != ""
81
+ tcs[:COMPILER][type][:COMMAND] = compiler.command
82
82
  end
83
- if compiler.respond_to?"prefix"
84
- tcs[:COMPILER][type][:PREFIX] = compiler.prefix if compiler.prefix != ""
83
+ if compiler.respond_to?("prefix") && compiler.prefix != ""
84
+ tcs[:COMPILER][type][:PREFIX] = compiler.prefix
85
85
  end
86
- if compiler.fileEndings
86
+ if compiler.respond_to?("fileEndings") && compiler.fileEndings && compiler.fileEndings.endings != ""
87
87
  tcs[:COMPILER][type][:SOURCE_FILE_ENDINGS] = compiler.fileEndings.endings.split(",").map{|e| e.strip}
88
88
  end
89
89
 
@@ -1,7 +1,7 @@
1
1
  module Bake
2
2
  class Version
3
3
  def self.number
4
- "2.43.0"
4
+ "2.43.1"
5
5
  end
6
6
 
7
7
  def self.printBakeVersion(ry = "")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bake-toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.43.0
4
+ version: 2.43.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Schaal