forked from scalingdata/liquidoc-gem
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable multi-file data ingest over commandline, including for dynamic…
… config (#86) * Add _build/ dirs to .gitignore * Update required dependencies ** rake {dev only) ~> 10.0 ** asciidoctor ~> 2.0 ** asciidoctor-pdf = 1.5.3 ** jekyll ~> 4.0 ** jekyll-asciidoc ~> 3.9 * Add multi-file ingest for dynamic config operations * Add proc get_payload & method add_payload ** Abstracts liquify operations shared by parse acton and dynamic config-parsing ** Translates DataFiles objects to ingestible (scoped) data for feeding templates ** get_payload reads files, scopes variables; add_payload bulk merges them into data_obj * Commandline args accommodate appending data to config (--data/-d file1.yml,file2.json) ** Properly maps comma-delimited filepaths to DataFiles object ** passes this object as @data_files/data_files along during --config builds ** Enables multi-datasource template processing via commandline ** Ex: bundle exec liquidoc -d data/file1.yml,data/file2.xml -t template.html -o out.html * Reorganizes add_data! methods so data object is required, scope optional (default: "") * Document new functionality in Basic Parsing & Dynamic Config topics * Ensure CLI functionality for basic parsing * Bump verson to 0.12.0-rc1 * Remove test output * Bump version to 0.12.0-rc2 * Fix missing style setting for PDF builds * Bump version to 0.12.0.rc3
- Loading branch information
1 parent
e05d240
commit f8cee71
Showing
6 changed files
with
144 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ pkg | |
*.html | ||
.DS_Store | ||
_build | ||
docs/_build |
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,3 +1,3 @@ | ||
module Liquidoc | ||
VERSION = "0.11.0" | ||
VERSION = "0.12.0-rc3" | ||
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