hyla 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/.gitignore +30 -0
- data/LICENSE.txt +10 -19
- data/README.adoc +67 -6
- data/bin/hyla +22 -20
- data/documentation/introduction.adoc +57 -60
- data/documentation/scripts/create_adoc_from_toc.sh +20 -0
- data/documentation/scripts/create_adoc_from_toc_config.sh +24 -0
- data/documentation/scripts/create_myblankproject.sh +12 -0
- data/documentation/scripts/create_myblankproject_add_artefacts.sh +23 -0
- data/documentation/scripts/create_myblankproject_add_artefacts_config.sh +28 -0
- data/documentation/scripts/create_mytemplateproject.sh +10 -0
- data/documentation/scripts/create_mytrainingproject.sh +10 -0
- data/documentation/scripts/generate_content_myblankproject.sh +25 -0
- data/documentation/scripts/generate_content_myblankproject_config.sh +28 -0
- data/documentation/scripts/generate_content_myblankproject_other_style.sh +29 -0
- data/documentation/scripts/generate_pdf_from_html.sh +36 -0
- data/documentation/scripts/generate_slideshow_deckjs.sh +18 -0
- data/documentation/scripts/generate_slideshow_mytoc_all.sh +17 -0
- data/documentation/scripts/generate_slideshow_mytoc_module.sh +10 -0
- data/documentation/scripts/generate_slideshow_revealjs.sh +23 -0
- data/documentation/scripts/generate_watch_mytrainingproject.sh +19 -0
- data/documentation/scripts/remove_temp_directories.sh +16 -0
- data/documentation/scripts/sendmail.sh +19 -0
- data/hyla.gemspec +4 -4
- data/lib/hyla/commands/create.rb +4 -4
- data/lib/hyla/commands/generate.rb +38 -22
- data/lib/hyla/commands/new.rb +5 -2
- data/lib/hyla/commands/sendmail.rb +2 -1
- data/lib/hyla/commands/serve.rb +2 -2
- data/lib/hyla/commands/watch.rb +10 -64
- data/lib/hyla/configuration.rb +9 -5
- data/lib/hyla/project.rb +1 -1
- data/lib/resources/styles/liberation.css +1 -0
- data/lib/templates/_config.yaml +72 -0
- data/lib/templates/sample/asciidoc_report.adoc +10 -48
- data/lib/templates/sample/asciidoc_source.adoc +7 -0
- data/lib/templates/sample/source/HelloWorld.java +11 -0
- data/test/reports/test-1.0.x-11-12-2013.txt +2 -2
- data/todo.adoc +0 -28
- metadata +1286 -444
- data/data/chm-status-weeks-0601-1001.html +0 -913
- data/lib/templates/_config.yml +0 -27
data/lib/templates/_config.yml
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
# Common options
|
2
|
-
source: .
|
3
|
-
destination: . # or . or ~/MyProject or generated_content
|
4
|
-
|
5
|
-
# Asciidoc and attributes options
|
6
|
-
backend: html5
|
7
|
-
attributes:
|
8
|
-
source-highlighter: coderay
|
9
|
-
linkcss!: true
|
10
|
-
data-uri: true
|
11
|
-
|
12
|
-
# Hyla options
|
13
|
-
# Generate command
|
14
|
-
#rendering: toc2adoc
|
15
|
-
rendering: adoc2html
|
16
|
-
|
17
|
-
# New/Create command
|
18
|
-
artefact_type: article
|
19
|
-
type: asciidoc
|
20
|
-
|
21
|
-
# Styles supported : liberation, asciidoctor, colony, foundation, foundation-lime, foundation-potion, github, golo, iconic, maker, readthedocs, riak, rocket-panda, rubygems
|
22
|
-
style: liberation
|
23
|
-
|
24
|
-
# Location of the Table of Content to be processed
|
25
|
-
# as a collection of asciidoc files
|
26
|
-
project_name: my-project
|
27
|
-
toc: /Users/chmoulli/MyProjects/hyla/data/toc.adoc # Change location
|