appydave-tools 0.31.1 → 0.31.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: e24c8dfde585d812b3badde9e488d54107700eadacf3932332556951f6433e90
4
- data.tar.gz: 25381e724a850a2ba20250855edf192127589009ccba9ec3862152e924e7e0d7
3
+ metadata.gz: 9d71eea74244afc1759f28541b577f58dcbef18d9d41a2915b71b009ef3a0560
4
+ data.tar.gz: 1aa6391d4c239f940dfb29331c8a1148b3653c481b96704a65674e5e994600f6
5
5
  SHA512:
6
- metadata.gz: 353655eae4d37c1f58ae7c9c89466d836019a9eaca560352055f0cf61bea191bc9a83aa8cbfd9dff36e5919237feb75f76cbbf1014b62d1782610b8cbaad9334
7
- data.tar.gz: 98818a2a5ccf86d7b114939f702c01797969f5f7a77eea37edd551b070f40334139a1002ac6fc333b89a21f56d6a96c508201947148c52d2733bab4c3537e5b0
6
+ metadata.gz: 9c0ddfef1fa42b395b1f0912cba44176fd9d4f65ea90314a0e295c6ba68b3b898c6a37f05e2c9c8945cf27e08bda8c91e1c6ad8ea14eddf3745d8dbddf4a9573
7
+ data.tar.gz: 48d56692a182c8da2c256ee7ea1f0128e90bd25505ee0c1aa06e77dd9ce8b344106e60c21ed43e6bf3aa52bfba42b12ac1afd4d605a1e26af2cff9b62056d367
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.31.1](https://github.com/appydave/appydave-tools/compare/v0.31.0...v0.31.1) (2025-11-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add git fetch to repo-status for accurate remote sync detection ([cdbf411](https://github.com/appydave/appydave-tools/commit/cdbf411d4978195c247656c0e443f390d60cdfe8))
7
+
1
8
  # [0.31.0](https://github.com/appydave/appydave-tools/compare/v0.30.0...v0.31.0) (2025-11-21)
2
9
 
3
10
 
@@ -84,8 +84,14 @@ module Appydave
84
84
 
85
85
  def sync_status_text(ahead, behind)
86
86
  parts = []
87
- parts << "#{ahead} ahead" if ahead.positive?
88
- parts << "#{behind} behind" if behind.positive?
87
+ if ahead.positive?
88
+ commit_word = ahead == 1 ? 'commit' : 'commits'
89
+ parts << "#{ahead} #{commit_word} to push"
90
+ end
91
+ if behind.positive?
92
+ commit_word = behind == 1 ? 'commit' : 'commits'
93
+ parts << "#{behind} #{commit_word} to pull"
94
+ end
89
95
  parts.join(', ')
90
96
  end
91
97
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.31.1'
5
+ VERSION = '0.31.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.31.1",
3
+ "version": "0.31.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.31.1
4
+ version: 0.31.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys