appydave-tools 0.32.0 → 0.32.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f17c4e44a61bf6479d5ef61c4d9d63ed21b3eb6700c1742ca0a9736cd235da59
4
- data.tar.gz: cc2638954ad4021d82d3a70d964e5b92b85d79ad9ad2e9ce0bd6a970b7c50757
3
+ metadata.gz: 268b64c0ebe59d6197d2296d7ae32ffcbcdf398256c5a97f64fa72a37a70ac45
4
+ data.tar.gz: 68d99d9971842135e5a83c33bd4aeb4e52d7fd3a6c8d8bf234a9de9a286a86e1
5
5
  SHA512:
6
- metadata.gz: d8c159f8eb4f284aae334df7b0d79d32560cd570b11023ac998d6c8617c844f2e943413c64df437c3a34764e27db8d7456d49b0349b8d7db520854901f880416
7
- data.tar.gz: 9f5a1f8f7d4f09734206437125b7f2be8186caf87d841a899b4ec8b6c286cf31bc3c4397df6ffe005e805feae3971fb22ecbdf954738278eadf95e99aad6bd4f
6
+ metadata.gz: fa79b3e644ce801f9bb155b22dabf3908d07ec4d1b3cc5cd3b700ebc272fa6036b53195a330499a936da0db2eac0ac56492da81f8747c3baec900eea36bc043c
7
+ data.tar.gz: 0fe66607f1d7cf495cd1d2f35cca3b266c51a69a377fee0590486929df9f4667ab19f5870868a73abbb295a2f1db8423ef2a782bc708922788ab2a6c04033864
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [0.32.0](https://github.com/appydave/appydave-tools/compare/v0.31.2...v0.32.0) (2025-11-21)
2
+
3
+
4
+ ### Features
5
+
6
+ * add comprehensive unit tests for projects_subfolder feature in ProjectResolver and ProjectListing ([d815be9](https://github.com/appydave/appydave-tools/commit/d815be931ed7dea3b7f048f3fb3f850861626300))
7
+
1
8
  ## [0.31.2](https://github.com/appydave/appydave-tools/compare/v0.31.1...v0.31.2) (2025-11-21)
2
9
 
3
10
 
@@ -95,6 +95,10 @@ module Appydave
95
95
  excluded = %w[archived docs node_modules .git .github]
96
96
  return false if excluded.include?(basename)
97
97
 
98
+ # Exclude organizational folders (for brands using projects_subfolder)
99
+ organizational = %w[brand personas projects video-scripts]
100
+ return false if organizational.include?(basename)
101
+
98
102
  # Exclude hidden and underscore-prefixed
99
103
  return false if basename.start_with?('.', '_')
100
104
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.32.0'
5
+ VERSION = '0.32.1'
6
6
  end
7
7
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appydave-tools",
3
- "version": "0.32.0",
3
+ "version": "0.32.1",
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.32.0
4
+ version: 0.32.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys