-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: dependencias y config para desarrollo
- Loading branch information
1 parent
81c9d59
commit daa4f36
Showing
6 changed files
with
49 additions
and
3 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
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 |
---|---|---|
|
@@ -3,5 +3,4 @@ | |
output/ | ||
.bundle | ||
vendor/bundle/ | ||
.vscode/ | ||
*~ |
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,35 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "rake build:html", | ||
"type": "Ruby", | ||
"request": "launch", | ||
"cwd": "${workspaceRoot}", | ||
"program": "/usr/local/rvm/gems/default/bin/rake", | ||
"args": ["build:html"], | ||
"useBundler": true, | ||
}, | ||
{ | ||
"name": "asciidoctor html", | ||
"type": "Ruby", | ||
"request": "launch", | ||
"cwd": "${workspaceRoot}", | ||
"program": "/usr/local/rvm/gems/default/bin/asciidoctor", | ||
"args": [ | ||
"--backend", "multipage_html5", | ||
"--require", "asciidoctor-multipage", | ||
"--require", "./lib/time-admonition-block.rb", | ||
"--require", "./lib/autoxref-treeprocessor.rb", | ||
"--attribute", "basedir=/workspaces/ssoo-apuntes", | ||
"--attribute", "outdir=/workspaces/ssoo-apuntes/output/html", | ||
"--destination-dir", "/workspaces/ssoo-apuntes/output/html", | ||
"content/main.adoc" | ||
], | ||
"useBundler": true, | ||
} | ||
] | ||
} |
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