rfix 1.2.4 → 1.2.5
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/Gemfile.lock +1 -1
- data/exe/rfix +2 -0
- data/lib/rfix/branches/base.rb +0 -14
- data/lib/rfix/branches/main.rb +1 -7
- data/lib/rfix/version.rb +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: 979604266b50448ef2a189a633eda6a6057e179ef67962a850718c07f8e2c726
|
4
|
+
data.tar.gz: 60b0a5b249baf32b738bde9ae350af154b3bf7862af836b42b960d5c91347b0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7efcea3b4f4419c05fca0467bfa1748d2cf1eb2c7771aeaa7f8bb83826016ece746635eb1303b6e881a1e108d4d06f9d6c0730db447314500ff1f30f5259b3b1
|
7
|
+
data.tar.gz: 3aba1e9526e140517131811ec818edcc437274cf36746b5253bffd86fcf301ffde93d40370264157a7099b30e7fd906f198b765dfb523725e6a752a8cbdb9c1d
|
data/Gemfile.lock
CHANGED
data/exe/rfix
CHANGED
data/lib/rfix/branches/base.rb
CHANGED
@@ -7,20 +7,6 @@ class Rfix::Branch::Base
|
|
7
7
|
raise Rfix::NotYetImplementedError.new("#to_s")
|
8
8
|
end
|
9
9
|
|
10
|
-
def branch(using:)
|
11
|
-
names(using: using).last or raise Rfix::Error.new("No named branch found for {{error:#{self}}}")
|
12
|
-
end
|
13
|
-
|
14
|
-
def names(using:)
|
15
|
-
oid = resolve(with: using).oid
|
16
|
-
locals = using.branches.each_name(:local).to_a
|
17
|
-
|
18
|
-
using.branches.select do |branch|
|
19
|
-
next false unless locals.include?(branch.name)
|
20
|
-
branch.target_id == oid
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
10
|
def revparse(using:, ref:)
|
25
11
|
using.rev_parse(ref)
|
26
12
|
rescue Rugged::InvalidError
|
data/lib/rfix/branches/main.rb
CHANGED
@@ -14,13 +14,7 @@ module Rfix
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def self.set(branch, at: Dir.pwd)
|
17
|
-
|
18
|
-
raise Rfix::Error.new("Branch must be a string, got {{error:#{branch.class}}}")
|
19
|
-
end
|
20
|
-
|
21
|
-
check = Branch::Name.new(branch)
|
22
|
-
repo = Branch.repo(at: at)
|
23
|
-
Branch.repo(at: at).config[KEY] = check.branch(using: repo).name
|
17
|
+
Branch.repo(at: at).config[KEY] = branch
|
24
18
|
end
|
25
19
|
|
26
20
|
def self.get(at: Dir.pwd)
|
data/lib/rfix/version.rb
CHANGED