appydave-tools 0.21.0 → 0.21.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c9c1294eb12c004bfbf7d5c3af2ad72e70202729867d5b2e1978d6710f573eca
4
- data.tar.gz: 4c00d396ba791995706c8caea17eb36b65c0c6142533281ceb83d75e74a90d00
3
+ metadata.gz: 72844960d0580ea65b08a7d8be703910946ae6b095bac290a594cc9a1288a208
4
+ data.tar.gz: 6ff9f2b0a5254a0ef2dc5fd1e07722e7635f9368a7ec6fd8deb3ffe016b01bc0
5
5
  SHA512:
6
- metadata.gz: 9c9e76453f9594c21c6e5a3571369f715eda1c5262fc5e80429776ed1a4e6afc29a6f258c238df3ef68ed3fc6a769dc5186168674aa90c9d0ee8705e2d056da9
7
- data.tar.gz: 1dac5dcaa14e3731fff08d6bfb0f3b6128549920503dd6e5869caf89696d40b6e4f745afeade7261d7ccc0a51baa93722b4204b8808b140537c041f393c77703
6
+ metadata.gz: 9ee56f7cafc8e772ee75dbf809860148c26a3a229c2b1da5f04899fad658185169f83f25eb2dab3ce2b395d7b7067e6f13a86936967f11da844c1da58bfdaa5f
7
+ data.tar.gz: cd5def0f4db1f1fef7aac06bcd17cd6f480322da95da18453efe40285b37ac51d17f7be504204e5f84363d0dc0286ce2a324c6b06049a4020d808a364b7b99d8
data/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ ## [0.21.1](https://github.com/appydave/appydave-tools/compare/v0.21.0...v0.21.1) (2025-11-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add dam executable to exe directory - required for gem installation ([301464f](https://github.com/appydave/appydave-tools/commit/301464f62d9c1f6572c5024ae7daa49e5b360a5e))
7
+
8
+ # [0.21.0](https://github.com/appydave/appydave-tools/compare/v0.20.1...v0.21.0) (2025-11-17)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * create manifest for brands with no projects ([4fea6bd](https://github.com/appydave/appydave-tools/commit/4fea6bd47ac705b2875eb901737b3a11b905619f))
14
+ * improve range folder and SSD detection ([fc0f58b](https://github.com/appydave/appydave-tools/commit/fc0f58b44ed6bf484d8fec10f3d1c38f8caa5206))
15
+ * remove require 'pry' from bin scripts - not in gemspec dependencies, breaks gem install on fresh systems ([624c2a9](https://github.com/appydave/appydave-tools/commit/624c2a976fde3995423e4b6a147d57249bd98c15))
16
+ * rename predicate methods to end with ? - handle_empty_files and find_project_in_ssd_ranges ([2c6b188](https://github.com/appydave/appydave-tools/commit/2c6b188c55b866aa5465403fd60b18e116445fe0))
17
+ * rubocop and test fixes ([3580c47](https://github.com/appydave/appydave-tools/commit/3580c47f461e5681e91e679addf23c7706f9bfd7))
18
+ * use ProjectResolver as class method in status and repo_push ([c0c8535](https://github.com/appydave/appydave-tools/commit/c0c853572fef9dccedd544a31ee369d5c0efa886))
19
+
20
+
21
+ ### Features
22
+
23
+ * add three-tier project type detection (storyline, flivideo, general) ([54ac404](https://github.com/appydave/appydave-tools/commit/54ac4045c8d3d49f63456de2dcfa9969f33169ea))
24
+
1
25
  ## [0.20.1](https://github.com/appydave/appydave-tools/compare/v0.20.0...v0.20.1) (2025-11-10)
2
26
 
3
27
 
data/exe/dam ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ $LOAD_PATH.unshift(File.expand_path('../lib', __dir__))
5
+
6
+ require 'appydave/tools'
7
+
8
+ # Set $PROGRAM_NAME to the bin/dam file so the guard passes
9
+ $PROGRAM_NAME = File.expand_path('../bin/dam', __dir__)
10
+
11
+ load $PROGRAM_NAME
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.21.0'
5
+ VERSION = '0.21.2'
6
6
  end
7
7
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appydave-tools",
3
- "version": "0.21.0",
3
+ "version": "0.21.2",
4
4
  "description": "AppyDave YouTube Automation Tools",
5
5
  "scripts": {
6
6
  "release": "semantic-release"
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.21.0
4
+ version: 0.21.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys
@@ -186,6 +186,7 @@ email:
186
186
  - david@ideasmen.com.au
187
187
  executables:
188
188
  - ad_config
189
+ - dam
189
190
  - gpt_context
190
191
  - prompt_tools
191
192
  - subtitle_manager
@@ -264,6 +265,7 @@ files:
264
265
  - docs/tools/youtube-automation.md
265
266
  - docs/tools/youtube-manager.md
266
267
  - exe/ad_config
268
+ - exe/dam
267
269
  - exe/gpt_context
268
270
  - exe/prompt_tools
269
271
  - exe/subtitle_manager