asgard 0.1.2 → 0.2.0
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/.github/workflows/deploy-github-pages.yml +52 -0
- data/CHANGELOG.md +54 -1
- data/CLAUDE.md +2 -2
- data/README.md +39 -12
- data/docs/api.md +131 -0
- data/docs/assets/css/custom.css +93 -0
- data/docs/assets/images/asgard.jpg +0 -0
- data/docs/changelog.md +100 -0
- data/docs/dependencies.md +221 -0
- data/docs/environment.md +113 -0
- data/docs/examples.md +140 -0
- data/docs/getting-started.md +180 -0
- data/docs/helpers.md +154 -0
- data/docs/index.md +85 -0
- data/docs/options.md +180 -0
- data/docs/shell.md +208 -0
- data/docs/subcommands.md +181 -0
- data/docs/task-files.md +254 -0
- data/docs/tasks.md +284 -0
- data/docs/variables.md +122 -0
- data/examples/concurrent.loki +58 -0
- data/lib/asgard/base.rb +90 -27
- data/lib/asgard/shell.rb +3 -1
- data/lib/asgard/tasks.rb +6 -0
- data/lib/asgard/version.rb +1 -1
- data/lib/asgard.rb +7 -2
- data/mkdocs.yml +164 -0
- metadata +20 -1
data/mkdocs.yml
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
# MkDocs Configuration for Asgard Documentation
|
|
2
|
+
site_name: Asgard
|
|
3
|
+
site_description: Thor-based Ruby task runner with dependency graphs and concurrent execution
|
|
4
|
+
site_author: Dewayne VanHoozer
|
|
5
|
+
site_url: https://madbomber.github.io/asgard
|
|
6
|
+
copyright: Copyright © 2026 Dewayne VanHoozer
|
|
7
|
+
|
|
8
|
+
# Repository information
|
|
9
|
+
repo_name: madbomber/asgard
|
|
10
|
+
repo_url: https://github.com/MadBomber/asgard
|
|
11
|
+
edit_uri: edit/main/docs/
|
|
12
|
+
|
|
13
|
+
# Configuration
|
|
14
|
+
theme:
|
|
15
|
+
name: material
|
|
16
|
+
|
|
17
|
+
# Color scheme
|
|
18
|
+
palette:
|
|
19
|
+
- scheme: default
|
|
20
|
+
primary: indigo
|
|
21
|
+
accent: amber
|
|
22
|
+
toggle:
|
|
23
|
+
icon: material/brightness-7
|
|
24
|
+
name: Switch to dark mode
|
|
25
|
+
|
|
26
|
+
- scheme: slate
|
|
27
|
+
primary: indigo
|
|
28
|
+
accent: amber
|
|
29
|
+
toggle:
|
|
30
|
+
icon: material/brightness-4
|
|
31
|
+
name: Switch to light mode
|
|
32
|
+
|
|
33
|
+
# Typography
|
|
34
|
+
font:
|
|
35
|
+
text: Roboto
|
|
36
|
+
code: Roboto Mono
|
|
37
|
+
|
|
38
|
+
# Logo and icon
|
|
39
|
+
icon:
|
|
40
|
+
repo: fontawesome/brands/github
|
|
41
|
+
logo: material/shield
|
|
42
|
+
|
|
43
|
+
# Theme features
|
|
44
|
+
features:
|
|
45
|
+
- navigation.instant
|
|
46
|
+
- navigation.tracking
|
|
47
|
+
- navigation.tabs
|
|
48
|
+
- navigation.tabs.sticky
|
|
49
|
+
- navigation.path
|
|
50
|
+
- navigation.indexes
|
|
51
|
+
- navigation.top
|
|
52
|
+
- navigation.footer
|
|
53
|
+
- toc.follow
|
|
54
|
+
- search.suggest
|
|
55
|
+
- search.highlight
|
|
56
|
+
- search.share
|
|
57
|
+
- header.autohide
|
|
58
|
+
- content.code.copy
|
|
59
|
+
- content.code.annotate
|
|
60
|
+
- content.tabs.link
|
|
61
|
+
- content.tooltips
|
|
62
|
+
- content.action.edit
|
|
63
|
+
- content.action.view
|
|
64
|
+
|
|
65
|
+
# Plugins
|
|
66
|
+
plugins:
|
|
67
|
+
- search:
|
|
68
|
+
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
|
|
69
|
+
- tags
|
|
70
|
+
|
|
71
|
+
# Extensions
|
|
72
|
+
markdown_extensions:
|
|
73
|
+
- abbr
|
|
74
|
+
- admonition
|
|
75
|
+
- attr_list
|
|
76
|
+
- def_list
|
|
77
|
+
- footnotes
|
|
78
|
+
- md_in_html
|
|
79
|
+
- tables
|
|
80
|
+
- toc:
|
|
81
|
+
permalink: true
|
|
82
|
+
title: On this page
|
|
83
|
+
|
|
84
|
+
- pymdownx.arithmatex:
|
|
85
|
+
generic: true
|
|
86
|
+
- pymdownx.betterem:
|
|
87
|
+
smart_enable: all
|
|
88
|
+
- pymdownx.caret
|
|
89
|
+
- pymdownx.critic
|
|
90
|
+
- pymdownx.details
|
|
91
|
+
- pymdownx.emoji:
|
|
92
|
+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
93
|
+
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
94
|
+
- pymdownx.highlight:
|
|
95
|
+
anchor_linenums: true
|
|
96
|
+
line_spans: __span
|
|
97
|
+
pygments_lang_class: true
|
|
98
|
+
- pymdownx.inlinehilite
|
|
99
|
+
- pymdownx.keys
|
|
100
|
+
- pymdownx.magiclink:
|
|
101
|
+
repo_url_shorthand: true
|
|
102
|
+
user: madbomber
|
|
103
|
+
repo: asgard
|
|
104
|
+
normalize_issue_symbols: true
|
|
105
|
+
- pymdownx.mark
|
|
106
|
+
- pymdownx.smartsymbols
|
|
107
|
+
- pymdownx.snippets:
|
|
108
|
+
check_paths: true
|
|
109
|
+
- pymdownx.superfences:
|
|
110
|
+
custom_fences:
|
|
111
|
+
- name: mermaid
|
|
112
|
+
class: mermaid
|
|
113
|
+
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
114
|
+
- pymdownx.tabbed:
|
|
115
|
+
alternate_style: true
|
|
116
|
+
- pymdownx.tasklist:
|
|
117
|
+
custom_checkbox: true
|
|
118
|
+
- pymdownx.tilde
|
|
119
|
+
|
|
120
|
+
# Extra CSS
|
|
121
|
+
extra_css:
|
|
122
|
+
- assets/css/custom.css
|
|
123
|
+
|
|
124
|
+
# Social media and extra configuration
|
|
125
|
+
extra:
|
|
126
|
+
social:
|
|
127
|
+
- icon: fontawesome/brands/github
|
|
128
|
+
link: https://github.com/MadBomber/asgard
|
|
129
|
+
name: Asgard on GitHub
|
|
130
|
+
- icon: fontawesome/solid/gem
|
|
131
|
+
link: https://rubygems.org/gems/asgard
|
|
132
|
+
name: Asgard on RubyGems
|
|
133
|
+
|
|
134
|
+
analytics:
|
|
135
|
+
feedback:
|
|
136
|
+
title: Was this page helpful?
|
|
137
|
+
ratings:
|
|
138
|
+
- icon: material/emoticon-happy-outline
|
|
139
|
+
name: This page was helpful
|
|
140
|
+
data: 1
|
|
141
|
+
note: Thanks for your feedback!
|
|
142
|
+
- icon: material/emoticon-sad-outline
|
|
143
|
+
name: This page could be improved
|
|
144
|
+
data: 0
|
|
145
|
+
note: Thanks for your feedback! Help us improve by creating an issue.
|
|
146
|
+
|
|
147
|
+
# Navigation
|
|
148
|
+
nav:
|
|
149
|
+
- Home: index.md
|
|
150
|
+
- Getting Started: getting-started.md
|
|
151
|
+
- Tasks:
|
|
152
|
+
- Defining Tasks: tasks.md
|
|
153
|
+
- Dependencies: dependencies.md
|
|
154
|
+
- Variables: variables.md
|
|
155
|
+
- Helper Methods: helpers.md
|
|
156
|
+
- CLI:
|
|
157
|
+
- Options & Flags: options.md
|
|
158
|
+
- Subcommands: subcommands.md
|
|
159
|
+
- Shell Helpers: shell.md
|
|
160
|
+
- Environment: environment.md
|
|
161
|
+
- Task Files: task-files.md
|
|
162
|
+
- API Reference: api.md
|
|
163
|
+
- Examples: examples.md
|
|
164
|
+
- Changelog: changelog.md
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: asgard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dewayne VanHoozer
|
|
@@ -62,6 +62,7 @@ extensions: []
|
|
|
62
62
|
extra_rdoc_files: []
|
|
63
63
|
files:
|
|
64
64
|
- ".envrc"
|
|
65
|
+
- ".github/workflows/deploy-github-pages.yml"
|
|
65
66
|
- ".loki"
|
|
66
67
|
- CHANGELOG.md
|
|
67
68
|
- CLAUDE.md
|
|
@@ -72,7 +73,24 @@ files:
|
|
|
72
73
|
- bin/asgard
|
|
73
74
|
- bin/console
|
|
74
75
|
- bin/setup
|
|
76
|
+
- docs/api.md
|
|
77
|
+
- docs/assets/css/custom.css
|
|
78
|
+
- docs/assets/images/asgard.jpg
|
|
79
|
+
- docs/changelog.md
|
|
80
|
+
- docs/dependencies.md
|
|
81
|
+
- docs/environment.md
|
|
82
|
+
- docs/examples.md
|
|
83
|
+
- docs/getting-started.md
|
|
84
|
+
- docs/helpers.md
|
|
85
|
+
- docs/index.md
|
|
86
|
+
- docs/options.md
|
|
87
|
+
- docs/shell.md
|
|
88
|
+
- docs/subcommands.md
|
|
89
|
+
- docs/task-files.md
|
|
90
|
+
- docs/tasks.md
|
|
91
|
+
- docs/variables.md
|
|
75
92
|
- examples/.loki
|
|
93
|
+
- examples/concurrent.loki
|
|
76
94
|
- examples/db_subcommands.loki
|
|
77
95
|
- examples/kitchen_sink.loki
|
|
78
96
|
- examples/server_subcommands.loki
|
|
@@ -81,6 +99,7 @@ files:
|
|
|
81
99
|
- lib/asgard/shell.rb
|
|
82
100
|
- lib/asgard/tasks.rb
|
|
83
101
|
- lib/asgard/version.rb
|
|
102
|
+
- mkdocs.yml
|
|
84
103
|
- sig/asgard.rbs
|
|
85
104
|
homepage: https://github.com/madbomber/asgard
|
|
86
105
|
licenses:
|