zenflow 0.8.4 → 0.8.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/VERSION.yml +1 -1
- data/lib/zenflow/helpers/branch_commands/finish.rb +1 -1
- data/spec/zenflow/helpers/branch_command_spec.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae2ed97af6262779e9958e11f9b2e6423e27c9e4
|
|
4
|
+
data.tar.gz: 3f3b3631d60598dfcfd2496e9611b40d556b3c5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 841b104df941cb9238b1ed83882a8b19e2ad3fab8f6c56dc4499f5d2af4ae002567c20640b83f570838814d94a0ae43ff0bf274f5d6c32e32f1973aad6c05c5e
|
|
7
|
+
data.tar.gz: f6636f589dcf351a561502173347e67155d5ba4412fa11c556fb695ce5a7070441fb7510e597df657af184a432a1cc56a7ac69c1c9be3ca147ffd69951165d1f
|
data/VERSION.yml
CHANGED
|
@@ -41,7 +41,7 @@ module Zenflow
|
|
|
41
41
|
def create_tag
|
|
42
42
|
return unless tag
|
|
43
43
|
Zenflow::Branch.tag(Zenflow::Version.current.to_s, @change)
|
|
44
|
-
Zenflow::Branch.
|
|
44
|
+
Zenflow::Branch.push_tags if !options[:offline]
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
def update_branch_from_destination
|
|
@@ -301,7 +301,7 @@ module BranchCommandSpec
|
|
|
301
301
|
Zenflow::Branch.should_receive(:push).with("production")
|
|
302
302
|
|
|
303
303
|
Zenflow::Branch.should_receive(:tag).with(Zenflow::Version.current.to_s, "YES")
|
|
304
|
-
Zenflow::Branch.should_receive(:
|
|
304
|
+
Zenflow::Branch.should_receive(:push_tags)
|
|
305
305
|
|
|
306
306
|
Zenflow::Branch.should_receive(:delete_remote).with("test/new-test-branch")
|
|
307
307
|
Zenflow::Branch.should_receive(:delete_local).with("test/new-test-branch", force: true)
|
|
@@ -353,7 +353,7 @@ module BranchCommandSpec
|
|
|
353
353
|
Zenflow::Branch.should_receive(:push).with("production")
|
|
354
354
|
|
|
355
355
|
Zenflow::Branch.should_receive(:tag).with(Zenflow::Version.current.to_s, "YES")
|
|
356
|
-
Zenflow::Branch.should_receive(:
|
|
356
|
+
Zenflow::Branch.should_receive(:push_tags)
|
|
357
357
|
|
|
358
358
|
Zenflow::Branch.should_receive(:delete_remote).with("test/new-test-branch")
|
|
359
359
|
Zenflow::Branch.should_receive(:delete_local).with("test/new-test-branch", force: true)
|