asgard 0.1.1 → 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 +56 -3
- data/CLAUDE.md +117 -0
- data/README.md +152 -10
- 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/.loki +2 -0
- data/examples/concurrent.loki +58 -0
- data/examples/db_subcommands.loki +74 -0
- data/examples/kitchen_sink.loki +164 -0
- data/examples/server_subcommands.loki +56 -0
- data/lib/asgard/base.rb +95 -30
- data/lib/asgard/shell.rb +3 -1
- data/lib/asgard/tasks.rb +29 -1
- data/lib/asgard/version.rb +1 -1
- data/lib/asgard.rb +11 -6
- data/mkdocs.yml +164 -0
- metadata +29 -5
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
|
|
@@ -51,9 +51,9 @@ dependencies:
|
|
|
51
51
|
- - "~>"
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
53
|
version: '3.0'
|
|
54
|
-
description:
|
|
55
|
-
|
|
56
|
-
importable task
|
|
54
|
+
description: A powerful Ruby-based task runner for any kind of project with task dependency
|
|
55
|
+
tracking and concurrent execution of designated tasks. Uses Thor for its rich CLI
|
|
56
|
+
options, var declarations, dotenv, sh/shebang helpers, and importable task files.
|
|
57
57
|
email:
|
|
58
58
|
- dewayne@vanhoozer.me
|
|
59
59
|
executables:
|
|
@@ -62,8 +62,10 @@ 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
|
|
68
|
+
- CLAUDE.md
|
|
67
69
|
- COMMITS.md
|
|
68
70
|
- LICENSE.txt
|
|
69
71
|
- README.md
|
|
@@ -71,11 +73,33 @@ files:
|
|
|
71
73
|
- bin/asgard
|
|
72
74
|
- bin/console
|
|
73
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
|
|
92
|
+
- examples/.loki
|
|
93
|
+
- examples/concurrent.loki
|
|
94
|
+
- examples/db_subcommands.loki
|
|
95
|
+
- examples/kitchen_sink.loki
|
|
96
|
+
- examples/server_subcommands.loki
|
|
74
97
|
- lib/asgard.rb
|
|
75
98
|
- lib/asgard/base.rb
|
|
76
99
|
- lib/asgard/shell.rb
|
|
77
100
|
- lib/asgard/tasks.rb
|
|
78
101
|
- lib/asgard/version.rb
|
|
102
|
+
- mkdocs.yml
|
|
79
103
|
- sig/asgard.rbs
|
|
80
104
|
homepage: https://github.com/madbomber/asgard
|
|
81
105
|
licenses:
|
|
@@ -100,5 +124,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
100
124
|
requirements: []
|
|
101
125
|
rubygems_version: 4.0.12
|
|
102
126
|
specification_version: 4
|
|
103
|
-
summary: A
|
|
127
|
+
summary: A powerful Ruby-based task runner
|
|
104
128
|
test_files: []
|