bake-toolkit 2.9.0 → 2.9.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: 8d7b3127c8cc5671a807254d3493ff59b326fb80
4
- data.tar.gz: 2f073076a3c207ea02eb37b22f503753acd0ad40
3
+ metadata.gz: 52dfb59454168c3e690324cf4424704e1eea8c57
4
+ data.tar.gz: c66ff0068c9ca3818435c58ddd77bd8d75305c63
5
5
  SHA512:
6
- metadata.gz: 2316ef390f25fa482f317bd173ef8ac992046b15afc920b8c2a24116faeb856ef898f895f2fc35762b656c4965bb3af461398a2e2a9e34a1ec87084f316bcee1
7
- data.tar.gz: 6bd20579645b276b447fb6810be9d9676dab6561818033597439d576f01f1b9f7b47b671803edf30edfcd0013cb7367800f3794db2530af3cad9d7817d12fc5f
6
+ metadata.gz: bd642f702dcd697a1238f0a293e9998c396b2a2cbb4bc88786e00f9af97f3ef058fdcfad6568ef0a57a744dbbd8b8d3f01a7630eec38619df8d59d6cc57ea424
7
+ data.tar.gz: d5d66254e89803405e484b332604465cc53d69e208daa622331076a7b12cbebae7c34c7e431852dc1aab77992ee4c0a30185f1220d38caddb3aaa943548564c8
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $:.unshift(File.dirname(__FILE__)+"/../lib")
4
+ require 'common/version'
5
+
6
+ puts "-- bake #{Bake::Version.number}, ruby #{RUBY_VERSION}p#{RUBY_PATCHLEVEL}, platform #{RUBY_PLATFORM} --"
7
+
8
+ puts "Command \"bake-doc\" not supported anymore. Please use"
9
+ puts "\"bake --show_doc\" to open the documentation in the browser OR"
10
+ puts "\"bake --docu ...\" for building the documentation of a project."
11
+ exit(1)
@@ -7,6 +7,11 @@
7
7
  <body>
8
8
  <h1>Changelog</h1>
9
9
 
10
+ June 8, 2015 - bake-toolkit 2.9.1<br>
11
+ <ul>
12
+ <li><b>Changed: "--doc" replaced by "--show_doc" to avoid confusion</b>
13
+ </ul>
14
+
10
15
  June 5, 2015 - bake-toolkit 2.9.0<br>
11
16
  <ul>
12
17
  <li><b>Added: "--create" command line option to create project templates</b>
@@ -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.9.0</td><td align="right">June 5, 2015</td></tr></table>
77
+ <table width="100%" border="0"><tr><td align="left">Described bake-toolkit version: 2.9.1</td><td align="right">June 8, 2015</td></tr></table>
78
78
 
79
79
  </body>
80
80
 
@@ -114,7 +114,8 @@ module Bake
114
114
  add_option(Option.new("--show_include_paths",false) { @show_includes = true })
115
115
  add_option(Option.new("--show_incs_and_defs",false) { @show_includes_and_defines = true })
116
116
  add_option(Option.new("--show_license",false) { License.show })
117
- add_option(Option.new("--doc",false) { Doc.show })
117
+ add_option(Option.new("--show_doc",false) { Doc.show })
118
+ add_option(Option.new("--doc",false) { Doc.deprecated })
118
119
  add_option(Option.new("--version",false) { ExitHelper.exit(0) })
119
120
  add_option(Option.new("--show_configs",false) { @showConfigs = true })
120
121
  add_option(Option.new("--writeCC2J",true) { |x| @cc2j_filename = x.gsub(/[\\]/,'/') })
@@ -15,5 +15,13 @@ module Bake
15
15
 
16
16
  ExitHelper.exit(0)
17
17
  end
18
+
19
+ def self.deprecated
20
+ puts "Option \"--doc\" not supported anymore. Please use"
21
+ puts "\"--show_doc\" to open the documentation in the browser OR"
22
+ puts "\"--docu\" for building the documentation of a project."
23
+ ExitHelper.exit(1)
24
+ end
25
+
18
26
  end
19
27
  end
@@ -44,7 +44,7 @@ module Bake
44
44
  puts " --create exe|lib|custom Creates a project with exe, lib or custom template"
45
45
  puts ""
46
46
  puts " --version Print version."
47
- puts " --doc Open documentation in browser"
47
+ puts " --show_doc Open documentation in browser"
48
48
  puts " -h, --help Print this help."
49
49
  puts " --show_license Print the license."
50
50
  puts ""
@@ -1,7 +1,7 @@
1
1
  module Bake
2
2
  class Version
3
3
  def self.number
4
- "2.9.0"
4
+ "2.9.1"
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.9.0
4
+ version: 2.9.1
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-06-05 00:00:00.000000000 Z
11
+ date: 2015-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rtext
@@ -72,6 +72,7 @@ executables:
72
72
  - bake
73
73
  - bakery
74
74
  - createVSProjects
75
+ - bake-doc
75
76
  extensions: []
76
77
  extra_rdoc_files: []
77
78
  files:
@@ -225,6 +226,7 @@ files:
225
226
  - bin/bake
226
227
  - bin/bakery
227
228
  - bin/createVSProjects
229
+ - bin/bake-doc
228
230
  homepage:
229
231
  licenses:
230
232
  - MIT