bovem 3.0.1 → 3.0.2
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/.travis-gemfile +1 -1
- data/Gemfile +1 -1
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/bovem.gemspec +2 -2
- data/doc/Bovem.html +2 -2
- data/doc/Bovem/Application.html +1 -1
- data/doc/Bovem/Command.html +1 -1
- data/doc/Bovem/CommandMethods.html +1 -1
- data/doc/Bovem/CommandMethods/Children.html +1 -1
- data/doc/Bovem/CommandMethods/Help.html +1 -1
- data/doc/Bovem/Configuration.html +1 -1
- data/doc/Bovem/Console.html +63 -63
- data/doc/Bovem/ConsoleMethods.html +1 -1
- data/doc/Bovem/ConsoleMethods/Interactions.html +31 -31
- data/doc/Bovem/ConsoleMethods/Interactions/ClassMethods.html +5 -5
- data/doc/Bovem/ConsoleMethods/Logging.html +197 -33
- data/doc/Bovem/ConsoleMethods/Logging/ClassMethods.html +1 -1
- data/doc/Bovem/ConsoleMethods/Output.html +1 -1
- data/doc/Bovem/ConsoleMethods/StyleHandling.html +1 -1
- data/doc/Bovem/ConsoleMethods/StyleHandling/ClassMethods.html +1 -1
- data/doc/Bovem/Errors.html +1 -1
- data/doc/Bovem/Errors/Error.html +1 -1
- data/doc/Bovem/Errors/InvalidConfiguration.html +1 -1
- data/doc/Bovem/Errors/InvalidLogger.html +1 -1
- data/doc/Bovem/Localizer.html +1 -1
- data/doc/Bovem/Logger.html +1 -1
- data/doc/Bovem/Option.html +85 -37
- data/doc/Bovem/Parser.html +7 -7
- data/doc/Bovem/ParserMethods.html +1 -1
- data/doc/Bovem/ParserMethods/General.html +1 -1
- data/doc/Bovem/ParserMethods/General/ClassMethods.html +7 -11
- data/doc/Bovem/Shell.html +1 -1
- data/doc/Bovem/ShellMethods.html +1 -1
- data/doc/Bovem/ShellMethods/Directories.html +1 -1
- data/doc/Bovem/ShellMethods/Execute.html +1 -1
- data/doc/Bovem/ShellMethods/General.html +1 -1
- data/doc/Bovem/ShellMethods/Read.html +1 -1
- data/doc/Bovem/ShellMethods/Write.html +1 -1
- data/doc/Bovem/Version.html +2 -2
- data/doc/_index.html +1 -1
- data/doc/file.README.html +2 -2
- data/doc/index.html +2 -2
- data/doc/method_list.html +49 -43
- data/doc/top-level-namespace.html +1 -1
- data/lib/bovem.rb +1 -1
- data/lib/bovem/application.rb +1 -1
- data/lib/bovem/command.rb +1 -1
- data/lib/bovem/configuration.rb +1 -1
- data/lib/bovem/console.rb +20 -1
- data/lib/bovem/errors.rb +1 -1
- data/lib/bovem/localizer.rb +1 -1
- data/lib/bovem/logger.rb +1 -1
- data/lib/bovem/option.rb +5 -3
- data/lib/bovem/parser.rb +13 -4
- data/lib/bovem/shell.rb +1 -1
- data/lib/bovem/version.rb +2 -2
- data/locales/en.yml +3 -2
- data/locales/it.yml +3 -2
- data/spec/bovem/application_spec.rb +1 -1
- data/spec/bovem/command_spec.rb +1 -1
- data/spec/bovem/configuration_spec.rb +1 -1
- data/spec/bovem/console_spec.rb +20 -1
- data/spec/bovem/errors_spec.rb +1 -1
- data/spec/bovem/logger_spec.rb +1 -1
- data/spec/bovem/option_spec.rb +1 -1
- data/spec/bovem/parser_spec.rb +1 -1
- data/spec/bovem/shell_spec.rb +1 -1
- data/spec/coverage_helper.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 601362fbad3a53f83f21d97960a1a20074ca10da
|
|
4
|
+
data.tar.gz: 6faf5b80ab1ab2a5cb687094cd266eb16e37851a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b5ca407b1545364b9247cb91e3681fb18d6b64dfd75af5cf6113ce58e952868b7fd0dd770255f067bbe03fb6762a0fd44b16b58fec4faa6d302322aeea496c2
|
|
7
|
+
data.tar.gz: d0d92c88f7396bdb47d71b2316ddb301970afbbc3d5e805781089c70ff94db6eb58d5fd70728830e0f1c0ab7b784e798f9962055d1b3d3c52064be4e8fad4099
|
data/.travis-gemfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the bovem gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the bovem gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/Gemfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the bovem gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the bovem gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/README.md
CHANGED
|
@@ -126,6 +126,6 @@ See documentation for more information.
|
|
|
126
126
|
|
|
127
127
|
## Copyright
|
|
128
128
|
|
|
129
|
-
Copyright (C) 2013 and above Shogun (
|
|
129
|
+
Copyright (C) 2013 and above Shogun (shogun@cowtech.it).
|
|
130
130
|
|
|
131
131
|
Licensed under the MIT license, which can be found at [http://www.opensource.org/licenses/mit-license.php](http://www.opensource.org/licenses/mit-license.php).
|
data/Rakefile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the cowtech-extensions gem. Copyright (C) 2011 and above Shogun <
|
|
3
|
+
# This file is part of the cowtech-extensions gem. Copyright (C) 2011 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
data/bovem.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# This file is part of the bovem gem. Copyright (C) 2013 and above Shogun <
|
|
3
|
+
# This file is part of the bovem gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
|
|
4
4
|
# Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
#
|
|
6
6
|
|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
|
10
10
|
gem.name = "bovem"
|
|
11
11
|
gem.version = Bovem::Version::STRING
|
|
12
12
|
gem.authors = ["Shogun"]
|
|
13
|
-
gem.email = ["
|
|
13
|
+
gem.email = ["shogun@cowtech.it"]
|
|
14
14
|
gem.homepage = "http://sw.cow.tc/bovem"
|
|
15
15
|
gem.summary = %q{A command line manager and a collection of utilities for developers.}
|
|
16
16
|
gem.description = %q{A command line manager and a collection of utilities for developers.}
|
data/doc/Bovem.html
CHANGED
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
|
|
89
89
|
<h2>Overview</h2><div class="docstring">
|
|
90
90
|
<div class="discussion">
|
|
91
|
-
<p>This file is part of the bovem gem. Copyright (C) 2013 and above Shogun
|
|
91
|
+
<p>This file is part of the bovem gem. Copyright (C) 2013 and above Shogun <a href="mailto:shogun@cowtech.it">shogun@cowtech.it</a>.
|
|
92
92
|
Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.</p>
|
|
93
93
|
|
|
94
94
|
|
|
@@ -177,7 +177,7 @@ Licensed under the MIT license, which can be found at http://www.opensource.org/
|
|
|
177
177
|
</div>
|
|
178
178
|
|
|
179
179
|
<div id="footer">
|
|
180
|
-
Generated on
|
|
180
|
+
Generated on Sun Aug 4 15:19:16 2013 by
|
|
181
181
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
182
182
|
0.8.7 (ruby-2.0.0).
|
|
183
183
|
</div>
|
data/doc/Bovem/Application.html
CHANGED
|
@@ -3048,7 +3048,7 @@
|
|
|
3048
3048
|
</div>
|
|
3049
3049
|
|
|
3050
3050
|
<div id="footer">
|
|
3051
|
-
Generated on
|
|
3051
|
+
Generated on Sun Aug 4 15:19:19 2013 by
|
|
3052
3052
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
3053
3053
|
0.8.7 (ruby-2.0.0).
|
|
3054
3054
|
</div>
|
data/doc/Bovem/Command.html
CHANGED
|
@@ -7022,7 +7022,7 @@
|
|
|
7022
7022
|
</div>
|
|
7023
7023
|
|
|
7024
7024
|
<div id="footer">
|
|
7025
|
-
Generated on
|
|
7025
|
+
Generated on Sun Aug 4 15:19:18 2013 by
|
|
7026
7026
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
7027
7027
|
0.8.7 (ruby-2.0.0).
|
|
7028
7028
|
</div>
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
</div>
|
|
117
117
|
|
|
118
118
|
<div id="footer">
|
|
119
|
-
Generated on
|
|
119
|
+
Generated on Sun Aug 4 15:19:16 2013 by
|
|
120
120
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
121
121
|
0.8.7 (ruby-2.0.0).
|
|
122
122
|
</div>
|
|
@@ -1276,7 +1276,7 @@ the user inputs or the defaults values.</p>
|
|
|
1276
1276
|
</div>
|
|
1277
1277
|
|
|
1278
1278
|
<div id="footer">
|
|
1279
|
-
Generated on
|
|
1279
|
+
Generated on Sun Aug 4 15:19:17 2013 by
|
|
1280
1280
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1281
1281
|
0.8.7 (ruby-2.0.0).
|
|
1282
1282
|
</div>
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
</div>
|
|
201
201
|
|
|
202
202
|
<div id="footer">
|
|
203
|
-
Generated on
|
|
203
|
+
Generated on Sun Aug 4 15:19:16 2013 by
|
|
204
204
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
205
205
|
0.8.7 (ruby-2.0.0).
|
|
206
206
|
</div>
|
|
@@ -444,7 +444,7 @@ config.property = "VALUE"
|
|
|
444
444
|
</div>
|
|
445
445
|
|
|
446
446
|
<div id="footer">
|
|
447
|
-
Generated on
|
|
447
|
+
Generated on Sun Aug 4 15:19:19 2013 by
|
|
448
448
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
449
449
|
0.8.7 (ruby-2.0.0).
|
|
450
450
|
</div>
|
data/doc/Bovem/Console.html
CHANGED
|
@@ -290,7 +290,7 @@
|
|
|
290
290
|
|
|
291
291
|
|
|
292
292
|
<h3 class="inherited">Methods included from <span class='object_link'><a href="ConsoleMethods/Logging.html" title="Bovem::ConsoleMethods::Logging (module)">Bovem::ConsoleMethods::Logging</a></span></h3>
|
|
293
|
-
<p class="inherited"><span class='object_link'><a href="ConsoleMethods/Logging.html#begin-instance_method" title="Bovem::ConsoleMethods::Logging#begin (method)">#begin</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#debug-instance_method" title="Bovem::ConsoleMethods::Logging#debug (method)">#debug</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#error-instance_method" title="Bovem::ConsoleMethods::Logging#error (method)">#error</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#fatal-instance_method" title="Bovem::ConsoleMethods::Logging#fatal (method)">#fatal</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#get_banner-instance_method" title="Bovem::ConsoleMethods::Logging#get_banner (method)">#get_banner</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#info-instance_method" title="Bovem::ConsoleMethods::Logging#info (method)">#info</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#status-instance_method" title="Bovem::ConsoleMethods::Logging#status (method)">#status</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#warn-instance_method" title="Bovem::ConsoleMethods::Logging#warn (method)">#warn</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#write-instance_method" title="Bovem::ConsoleMethods::Logging#write (method)">#write</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#write_banner_aligned-instance_method" title="Bovem::ConsoleMethods::Logging#write_banner_aligned (method)">#write_banner_aligned</a></span></p>
|
|
293
|
+
<p class="inherited"><span class='object_link'><a href="ConsoleMethods/Logging.html#begin-instance_method" title="Bovem::ConsoleMethods::Logging#begin (method)">#begin</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#debug-instance_method" title="Bovem::ConsoleMethods::Logging#debug (method)">#debug</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#error-instance_method" title="Bovem::ConsoleMethods::Logging#error (method)">#error</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#fatal-instance_method" title="Bovem::ConsoleMethods::Logging#fatal (method)">#fatal</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#get_banner-instance_method" title="Bovem::ConsoleMethods::Logging#get_banner (method)">#get_banner</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#info-instance_method" title="Bovem::ConsoleMethods::Logging#info (method)">#info</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#progress-instance_method" title="Bovem::ConsoleMethods::Logging#progress (method)">#progress</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#status-instance_method" title="Bovem::ConsoleMethods::Logging#status (method)">#status</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#warn-instance_method" title="Bovem::ConsoleMethods::Logging#warn (method)">#warn</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#write-instance_method" title="Bovem::ConsoleMethods::Logging#write (method)">#write</a></span>, <span class='object_link'><a href="ConsoleMethods/Logging.html#write_banner_aligned-instance_method" title="Bovem::ConsoleMethods::Logging#write_banner_aligned (method)">#write_banner_aligned</a></span></p>
|
|
294
294
|
|
|
295
295
|
|
|
296
296
|
|
|
@@ -344,14 +344,14 @@
|
|
|
344
344
|
<pre class="lines">
|
|
345
345
|
|
|
346
346
|
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
347
|
+
630
|
|
348
|
+
631
|
|
349
|
+
632
|
|
350
|
+
633
|
|
351
|
+
634</pre>
|
|
352
352
|
</td>
|
|
353
353
|
<td>
|
|
354
|
-
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line
|
|
354
|
+
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line 630</span>
|
|
355
355
|
|
|
356
356
|
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span>
|
|
357
357
|
<span class='ivar'>@indentation</span> <span class='op'>=</span> <span class='int'>0</span>
|
|
@@ -412,25 +412,6 @@
|
|
|
412
412
|
<pre class="lines">
|
|
413
413
|
|
|
414
414
|
|
|
415
|
-
593
|
|
416
|
-
594
|
|
417
|
-
595
|
|
418
|
-
596
|
|
419
|
-
597
|
|
420
|
-
598
|
|
421
|
-
599
|
|
422
|
-
600
|
|
423
|
-
601
|
|
424
|
-
602
|
|
425
|
-
603
|
|
426
|
-
604
|
|
427
|
-
605
|
|
428
|
-
606
|
|
429
|
-
607
|
|
430
|
-
608
|
|
431
|
-
609
|
|
432
|
-
610
|
|
433
|
-
611
|
|
434
415
|
612
|
|
435
416
|
613
|
|
436
417
|
614
|
|
@@ -447,10 +428,29 @@
|
|
|
447
428
|
625
|
|
448
429
|
626
|
|
449
430
|
627
|
|
450
|
-
628
|
|
431
|
+
628
|
|
432
|
+
629
|
|
433
|
+
630
|
|
434
|
+
631
|
|
435
|
+
632
|
|
436
|
+
633
|
|
437
|
+
634
|
|
438
|
+
635
|
|
439
|
+
636
|
|
440
|
+
637
|
|
441
|
+
638
|
|
442
|
+
639
|
|
443
|
+
640
|
|
444
|
+
641
|
|
445
|
+
642
|
|
446
|
+
643
|
|
447
|
+
644
|
|
448
|
+
645
|
|
449
|
+
646
|
|
450
|
+
647</pre>
|
|
451
451
|
</td>
|
|
452
452
|
<td>
|
|
453
|
-
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line
|
|
453
|
+
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line 612</span>
|
|
454
454
|
|
|
455
455
|
<span class='kw'>class</span> <span class='const'>Console</span>
|
|
456
456
|
<span class='id identifier rubyid_attr_accessor'>attr_accessor</span> <span class='symbol'>:indentation</span>
|
|
@@ -537,25 +537,6 @@
|
|
|
537
537
|
<pre class="lines">
|
|
538
538
|
|
|
539
539
|
|
|
540
|
-
593
|
|
541
|
-
594
|
|
542
|
-
595
|
|
543
|
-
596
|
|
544
|
-
597
|
|
545
|
-
598
|
|
546
|
-
599
|
|
547
|
-
600
|
|
548
|
-
601
|
|
549
|
-
602
|
|
550
|
-
603
|
|
551
|
-
604
|
|
552
|
-
605
|
|
553
|
-
606
|
|
554
|
-
607
|
|
555
|
-
608
|
|
556
|
-
609
|
|
557
|
-
610
|
|
558
|
-
611
|
|
559
540
|
612
|
|
560
541
|
613
|
|
561
542
|
614
|
|
@@ -572,10 +553,29 @@
|
|
|
572
553
|
625
|
|
573
554
|
626
|
|
574
555
|
627
|
|
575
|
-
628
|
|
556
|
+
628
|
|
557
|
+
629
|
|
558
|
+
630
|
|
559
|
+
631
|
|
560
|
+
632
|
|
561
|
+
633
|
|
562
|
+
634
|
|
563
|
+
635
|
|
564
|
+
636
|
|
565
|
+
637
|
|
566
|
+
638
|
|
567
|
+
639
|
|
568
|
+
640
|
|
569
|
+
641
|
|
570
|
+
642
|
|
571
|
+
643
|
|
572
|
+
644
|
|
573
|
+
645
|
|
574
|
+
646
|
|
575
|
+
647</pre>
|
|
576
576
|
</td>
|
|
577
577
|
<td>
|
|
578
|
-
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line
|
|
578
|
+
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line 612</span>
|
|
579
579
|
|
|
580
580
|
<span class='kw'>class</span> <span class='const'>Console</span>
|
|
581
581
|
<span class='id identifier rubyid_attr_accessor'>attr_accessor</span> <span class='symbol'>:indentation</span>
|
|
@@ -667,12 +667,12 @@
|
|
|
667
667
|
<pre class="lines">
|
|
668
668
|
|
|
669
669
|
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
670
|
+
625
|
|
671
|
+
626
|
|
672
|
+
627</pre>
|
|
673
673
|
</td>
|
|
674
674
|
<td>
|
|
675
|
-
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line
|
|
675
|
+
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line 625</span>
|
|
676
676
|
|
|
677
677
|
<span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_instance'>instance</span>
|
|
678
678
|
<span class='ivar'>@instance</span> <span class='op'>||=</span> <span class='const'>Bovem</span><span class='op'>::</span><span class='const'>Console</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span>
|
|
@@ -730,17 +730,17 @@
|
|
|
730
730
|
<pre class="lines">
|
|
731
731
|
|
|
732
732
|
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
733
|
+
639
|
|
734
|
+
640
|
|
735
|
+
641
|
|
736
|
+
642
|
|
737
|
+
643
|
|
738
|
+
644
|
|
739
|
+
645
|
|
740
|
+
646</pre>
|
|
741
741
|
</td>
|
|
742
742
|
<td>
|
|
743
|
-
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line
|
|
743
|
+
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line 639</span>
|
|
744
744
|
|
|
745
745
|
<span class='kw'>def</span> <span class='id identifier rubyid_line_width'>line_width</span>
|
|
746
746
|
<span class='kw'>begin</span>
|
|
@@ -760,7 +760,7 @@
|
|
|
760
760
|
</div>
|
|
761
761
|
|
|
762
762
|
<div id="footer">
|
|
763
|
-
Generated on
|
|
763
|
+
Generated on Sun Aug 4 15:19:19 2013 by
|
|
764
764
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
765
765
|
0.8.7 (ruby-2.0.0).
|
|
766
766
|
</div>
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
</div>
|
|
117
117
|
|
|
118
118
|
<div id="footer">
|
|
119
|
-
Generated on
|
|
119
|
+
Generated on Sun Aug 4 15:19:17 2013 by
|
|
120
120
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
121
121
|
0.8.7 (ruby-2.0.0).
|
|
122
122
|
</div>
|
|
@@ -280,24 +280,24 @@
|
|
|
280
280
|
<pre class="lines">
|
|
281
281
|
|
|
282
282
|
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
283
|
+
482
|
|
284
|
+
483
|
|
285
|
+
484
|
|
286
|
+
485
|
|
287
|
+
486
|
|
288
|
+
487
|
|
289
|
+
488
|
|
290
|
+
489
|
|
291
|
+
490
|
|
292
|
+
491
|
|
293
|
+
492
|
|
294
|
+
493
|
|
295
|
+
494
|
|
296
|
+
495
|
|
297
|
+
496</pre>
|
|
298
298
|
</td>
|
|
299
299
|
<td>
|
|
300
|
-
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line
|
|
300
|
+
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line 482</span>
|
|
301
301
|
|
|
302
302
|
<span class='kw'>def</span> <span class='id identifier rubyid_read'>read</span><span class='lparen'>(</span><span class='id identifier rubyid_prompt'>prompt</span> <span class='op'>=</span> <span class='kw'>true</span><span class='comma'>,</span> <span class='id identifier rubyid_default_value'>default_value</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='comma'>,</span> <span class='id identifier rubyid_validator'>validator</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='comma'>,</span> <span class='id identifier rubyid_echo'>echo</span> <span class='op'>=</span> <span class='kw'>true</span><span class='rparen'>)</span>
|
|
303
303
|
<span class='id identifier rubyid_prompt'>prompt</span> <span class='op'>=</span> <span class='id identifier rubyid_sanitize_prompt'>sanitize_prompt</span><span class='lparen'>(</span><span class='id identifier rubyid_prompt'>prompt</span><span class='rparen'>)</span>
|
|
@@ -518,22 +518,22 @@
|
|
|
518
518
|
<pre class="lines">
|
|
519
519
|
|
|
520
520
|
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
521
|
+
510
|
|
522
|
+
511
|
|
523
|
+
512
|
|
524
|
+
513
|
|
525
|
+
514
|
|
526
|
+
515
|
|
527
|
+
516
|
|
528
|
+
517
|
|
529
|
+
518
|
|
530
|
+
519
|
|
531
|
+
520
|
|
532
|
+
521
|
|
533
|
+
522</pre>
|
|
534
534
|
</td>
|
|
535
535
|
<td>
|
|
536
|
-
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line
|
|
536
|
+
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line 510</span>
|
|
537
537
|
|
|
538
538
|
<span class='kw'>def</span> <span class='id identifier rubyid_task'>task</span><span class='lparen'>(</span><span class='id identifier rubyid_message'>message</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='comma'>,</span> <span class='id identifier rubyid_suffix'>suffix</span> <span class='op'>=</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>\n</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='id identifier rubyid_indent'>indent</span> <span class='op'>=</span> <span class='kw'>true</span><span class='comma'>,</span> <span class='id identifier rubyid_wrap'>wrap</span> <span class='op'>=</span> <span class='kw'>false</span><span class='comma'>,</span> <span class='id identifier rubyid_plain'>plain</span> <span class='op'>=</span> <span class='kw'>false</span><span class='comma'>,</span> <span class='id identifier rubyid_indented_banner'>indented_banner</span> <span class='op'>=</span> <span class='kw'>false</span><span class='comma'>,</span> <span class='id identifier rubyid_full_colored'>full_colored</span> <span class='op'>=</span> <span class='kw'>false</span><span class='comma'>,</span> <span class='id identifier rubyid_block_indentation'>block_indentation</span> <span class='op'>=</span> <span class='int'>2</span><span class='comma'>,</span> <span class='id identifier rubyid_block_indentation_absolute'>block_indentation_absolute</span> <span class='op'>=</span> <span class='kw'>false</span><span class='rparen'>)</span>
|
|
539
539
|
<span class='id identifier rubyid_status'>status</span> <span class='op'>=</span> <span class='kw'>nil</span>
|
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
</div>
|
|
559
559
|
|
|
560
560
|
<div id="footer">
|
|
561
|
-
Generated on
|
|
561
|
+
Generated on Sun Aug 4 15:19:17 2013 by
|
|
562
562
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
563
563
|
0.8.7 (ruby-2.0.0).
|
|
564
564
|
</div>
|
|
@@ -202,12 +202,12 @@
|
|
|
202
202
|
<pre class="lines">
|
|
203
203
|
|
|
204
204
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
205
|
+
471
|
|
206
|
+
472
|
|
207
|
+
473</pre>
|
|
208
208
|
</td>
|
|
209
209
|
<td>
|
|
210
|
-
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line
|
|
210
|
+
<pre class="code"><span class="info file"># File 'lib/bovem/console.rb', line 471</span>
|
|
211
211
|
|
|
212
212
|
<span class='kw'>def</span> <span class='id identifier rubyid_execute'>execute</span><span class='lparen'>(</span><span class='id identifier rubyid_command'>command</span><span class='rparen'>)</span>
|
|
213
213
|
<span class='backtick'>%x{</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_command'>command</span><span class='embexpr_end'>}</span><span class='tstring_end'>}</span></span>
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
</div>
|
|
223
223
|
|
|
224
224
|
<div id="footer">
|
|
225
|
-
Generated on
|
|
225
|
+
Generated on Sun Aug 4 15:19:17 2013 by
|
|
226
226
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
227
227
|
0.8.7 (ruby-2.0.0).
|
|
228
228
|
</div>
|