appydave-tools 0.19.0 → 0.20.1
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/CHANGELOG.md +15 -0
- data/bin/dam +122 -0
- data/docs/dam/dam-testing-plan.md +142 -45
- data/docs/dam/usage.md +138 -1
- data/docs/development/CODEX-recommendations.md +13 -9
- data/lib/appydave/tools/configuration/models/config_base.rb +1 -2
- data/lib/appydave/tools/dam/repo_push.rb +131 -0
- data/lib/appydave/tools/dam/repo_status.rb +140 -0
- data/lib/appydave/tools/dam/repo_sync.rb +122 -0
- data/lib/appydave/tools/dam/status.rb +278 -0
- data/lib/appydave/tools/version.rb +1 -1
- data/lib/appydave/tools.rb +4 -0
- data/package.json +1 -1
- metadata +5 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appydave-tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.20.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Cruwys
|
|
@@ -292,7 +292,11 @@ files:
|
|
|
292
292
|
- lib/appydave/tools/dam/manifest_generator.rb
|
|
293
293
|
- lib/appydave/tools/dam/project_listing.rb
|
|
294
294
|
- lib/appydave/tools/dam/project_resolver.rb
|
|
295
|
+
- lib/appydave/tools/dam/repo_push.rb
|
|
296
|
+
- lib/appydave/tools/dam/repo_status.rb
|
|
297
|
+
- lib/appydave/tools/dam/repo_sync.rb
|
|
295
298
|
- lib/appydave/tools/dam/s3_operations.rb
|
|
299
|
+
- lib/appydave/tools/dam/status.rb
|
|
296
300
|
- lib/appydave/tools/dam/sync_from_ssd.rb
|
|
297
301
|
- lib/appydave/tools/debuggable.rb
|
|
298
302
|
- lib/appydave/tools/gpt_context/_doc.md
|