appydave-tools 0.31.0 → 0.31.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 +7 -0
- data/lib/appydave/tools/dam/repo_status.rb +10 -0
- data/lib/appydave/tools/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e24c8dfde585d812b3badde9e488d54107700eadacf3932332556951f6433e90
|
|
4
|
+
data.tar.gz: 25381e724a850a2ba20250855edf192127589009ccba9ec3862152e924e7e0d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 353655eae4d37c1f58ae7c9c89466d836019a9eaca560352055f0cf61bea191bc9a83aa8cbfd9dff36e5919237feb75f76cbbf1014b62d1782610b8cbaad9334
|
|
7
|
+
data.tar.gz: 98818a2a5ccf86d7b114939f702c01797969f5f7a77eea37edd551b070f40334139a1002ac6fc333b89a21f56d6a96c508201947148c52d2733bab4c3537e5b0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [0.31.0](https://github.com/appydave/appydave-tools/compare/v0.30.0...v0.31.0) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* fix ManifestGenerator to scan only projects subfolder when configured - prevents scanning brand root organizational folders (brand/, personas/, video-scripts/) as projects ([2c8d84c](https://github.com/appydave/appydave-tools/commit/2c8d84c70f783a0f87ff36cc1e79c00df668def5))
|
|
7
|
+
|
|
1
8
|
# [0.30.0](https://github.com/appydave/appydave-tools/compare/v0.29.0...v0.30.0) (2025-11-21)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -62,6 +62,9 @@ module Appydave
|
|
|
62
62
|
end
|
|
63
63
|
|
|
64
64
|
def show_git_info(indent: '')
|
|
65
|
+
# Fetch latest from remote to ensure accurate status
|
|
66
|
+
fetch_from_remote
|
|
67
|
+
|
|
65
68
|
status = git_status_info
|
|
66
69
|
|
|
67
70
|
puts "#{indent}🌿 Branch: #{status[:branch]}"
|
|
@@ -156,6 +159,13 @@ module Appydave
|
|
|
156
159
|
rescue StandardError
|
|
157
160
|
# Silently fail if git status fails
|
|
158
161
|
end
|
|
162
|
+
|
|
163
|
+
# Fetch latest changes from remote to ensure accurate sync status
|
|
164
|
+
def fetch_from_remote
|
|
165
|
+
`git -C "#{brand_path}" fetch origin 2>/dev/null`
|
|
166
|
+
rescue StandardError
|
|
167
|
+
# Silently fail if fetch fails (e.g., no network, no remote)
|
|
168
|
+
end
|
|
159
169
|
end
|
|
160
170
|
end
|
|
161
171
|
end
|
data/package.json
CHANGED