This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/0.13.0: release v0.13.0 improved wording enable usage with a trailing slash (Ticket #73279) Redmine Issue #66113: add test for template with dynamic filename decrease bundler version dependency add doc command to workflow command (Ticket #73280) adjust default_values custom file path to new workflow ( Ticket #66119) add changelog
- Loading branch information
Showing
13 changed files
with
119 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# indoctrinatr-tools | ||
|
||
## v0.13.0 (2016-05-27) | ||
|
||
### features | ||
|
||
* support for trailing slashes in template pack name | ||
|
||
### changes | ||
|
||
* refactoring | ||
|
||
## v0.12.0 (2016-05-10) | ||
|
||
### features | ||
|
||
* added `check` command: This analyzes your template pack for major issues (#64232) | ||
* add `pdf_with_field_names` command (#64694). This creates an example where the field names are shown | ||
* add the example with fieldnames to technical documentation (#71536) - when it is successfully generated | ||
* add `keep-aux-files` option to pdf generation (#66118) | ||
* disable overwriting PDF examples for `doc` command (#71535) | ||
|
||
### changes | ||
|
||
* documentation doesn't break when description field is missing (#65001) | ||
* @longtabu@ for attributes list in documentation (#66081) | ||
* move examples after generation in `/doc` directory in template pack | ||
* show attributes list documentation as landscape | ||
* refactoring |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Feature: Running the 'pdf' command with timestamp in filename | ||
Scenario: using the test fixture | ||
Given I use the fixture named "test" | ||
When I cd to "../" | ||
When I run the Indoctrinatr command 'parse test' | ||
And I run `indoctrinatr pdf test` | ||
# String interpolation for "file named should exist" does not work. Therefore less strict regexp matching: | ||
Then a file matching %r<test/doc/examples/\d{4}_hello_world\.pdf> should exist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Indoctrinatr | ||
module Tools | ||
VERSION = '0.12.0'.freeze | ||
VERSION = '0.13.0'.freeze | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
template_name: Hello World Template | ||
output_file_name: '#{Time.now.year}_hello_world.pdf' | ||
textual_description: | | ||
This is your first _Indoctrinatr_ template. You can use _Textile_ syntax here to *highlight* important information. | ||
Edit this template as you like. Read more at https://github.com/dkd/indoctrinatr. | ||
fields: | ||
- | ||
name: variable1 | ||
label: Who is it? | ||
presentation: text | ||
default_value: "World" | ||
description: "The first variable" | ||
- | ||
name: date | ||
label: Date | ||
presentation: date | ||
default_value: '#{Time.now.year}-#{Time.now.month}-#{Time.now.day}' | ||
- | ||
name: variable2 | ||
label: Type of World | ||
required: "true" | ||
presentation: dropdown | ||
default_value: "not enough" | ||
available_options: "not enough, beautiful, your oyster, a template" | ||
description: "The second variable. The description name can be very long and should adequately describe what the variable is for etc. pp." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
% This is the official Indoctrinatr "Hello World Template". | ||
\documentclass{article} | ||
|
||
\begin{document} | ||
\section{Hello <%= variable1 -%>} | ||
|
||
The <%= variable1 -%> is <%= variable2 -%>! | ||
|
||
Today is \textbf{<%= date -%>}. | ||
|
||
% This is is the raw, unescaped input of \texttt{variable1}: | ||
\begin{verbatim} | ||
<%= raw_variable1 -%> | ||
\end{verbatim} | ||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters