aidp 0.49.13 → 0.49.14

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: 5840a5dd1754c05dcb6fb0c8d2b96fecf2a093896caf19704d80397ad97f829c
4
- data.tar.gz: '008354478b95ae1e16b8064ae0485c44aa930edec611e0b0aaa1a04da18ccaca'
3
+ metadata.gz: e0670861e0010f7d691a78995723512362bbc9bc3562c259319e4aec8ae90bec
4
+ data.tar.gz: 790b9b93cb98ea2dc6c4a9c210d2943e8e78df5e6921fdd7dafdcc3bc62af309
5
5
  SHA512:
6
- metadata.gz: 0a3ca1a4fc8923f0599a85ea630a0d39e429790c1a718891e40e5e56d4d5a9170c72e03bf2d083567686e168391897dc15b8a3e4fc28c83569cb6aa0b2f7bac7
7
- data.tar.gz: beb27cca39345af8ed6f546bd284ab1a90dd0b52336479cfe4399a1166ba70aa826f4108556ddbc33522de2a40033dff9791652a7d253043de4a5741cd441114
6
+ metadata.gz: 05d15e5b9a97261dff4cba04fa8b830e594553d0dd0f20a29baa757e3085c076cfe32e3889d2a19f03270483cf746c1329c7127b99ba9e7c16d63b0b81e1f862
7
+ data.tar.gz: 94d6d3f9393050449c3fe2f1521acb793f09dd27d247422184374a398c6f4fc91f595d889a12b99b765d6475d1a3deb2360831b614df909463a02bdd6c9c86df
@@ -77,7 +77,7 @@ module Aidp
77
77
  return nil unless File.exist?(".git")
78
78
 
79
79
  # Try to get origin URL
80
- stdout, _stderr, status = Open3.capture3("git remote get-url origin")
80
+ stdout, _stderr, status = Open3.capture3("git", "remote", "get-url", "origin")
81
81
  return nil unless status.success?
82
82
 
83
83
  origin_url = stdout.strip
@@ -1343,7 +1343,7 @@ module Aidp
1343
1343
  prompt.say("\nšŸ”€ Pull Request Configuration")
1344
1344
 
1345
1345
  # Check if remote exists
1346
- has_remote = system("git remote -v > /dev/null 2>&1")
1346
+ has_remote = system("git", "remote", "-v", out: File::NULL, err: File::NULL)
1347
1347
 
1348
1348
  unless has_remote
1349
1349
  prompt.say("No git remote detected. PR creation will be disabled.")
data/lib/aidp/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Aidp
4
- VERSION = "0.49.13"
4
+ VERSION = "0.49.14"
5
5
  end
@@ -749,7 +749,7 @@ module Aidp
749
749
  # Capture git worktree context
750
750
  # @return [Hash] Worktree information
751
751
  def capture_worktree_context
752
- return {} unless system("git rev-parse --git-dir > /dev/null 2>&1")
752
+ return {} unless system("git", "rev-parse", "--git-dir", out: File::NULL, err: File::NULL)
753
753
 
754
754
  {
755
755
  branch: `git rev-parse --abbrev-ref HEAD`.strip,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aidp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.13
4
+ version: 0.49.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bart Agapinan