bake-toolkit 2.9.0 → 2.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/bake-doc +11 -0
- data/doc/further/change.html +5 -0
- data/doc/index.html +1 -1
- data/lib/bake/options/options.rb +2 -1
- data/lib/bake/options/showDoc.rb +8 -0
- data/lib/bake/options/usage.rb +1 -1
- data/lib/common/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52dfb59454168c3e690324cf4424704e1eea8c57
|
4
|
+
data.tar.gz: c66ff0068c9ca3818435c58ddd77bd8d75305c63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd642f702dcd697a1238f0a293e9998c396b2a2cbb4bc88786e00f9af97f3ef058fdcfad6568ef0a57a744dbbd8b8d3f01a7630eec38619df8d59d6cc57ea424
|
7
|
+
data.tar.gz: d5d66254e89803405e484b332604465cc53d69e208daa622331076a7b12cbebae7c34c7e431852dc1aab77992ee4c0a30185f1220d38caddb3aaa943548564c8
|
data/bin/bake-doc
ADDED
@@ -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)
|
data/doc/further/change.html
CHANGED
@@ -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>
|
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.9.
|
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
|
|
data/lib/bake/options/options.rb
CHANGED
@@ -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("--
|
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(/[\\]/,'/') })
|
data/lib/bake/options/showDoc.rb
CHANGED
@@ -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
|
data/lib/bake/options/usage.rb
CHANGED
@@ -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 " --
|
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 ""
|
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.9.
|
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-
|
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
|