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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ad5dd8a33420a4b3ee33ad38fbe379aa90822a9
4
- data.tar.gz: c24a2dd9c5dc478457d4daae3d081fb129ec69f1
3
+ metadata.gz: ae2ed97af6262779e9958e11f9b2e6423e27c9e4
4
+ data.tar.gz: 3f3b3631d60598dfcfd2496e9611b40d556b3c5a
5
5
  SHA512:
6
- metadata.gz: f1e7d76da03d863dd5ceadd994cfc70d9051ef05470043d847aa4ed0cb35ee22d634e0046cd0a362dc0ea4a8ace082e9b607c0364213fc00f0dee3d4e77c4dc0
7
- data.tar.gz: 6f52a01b6dfd9f745b04e970bde1490940a6350033d5be14b97facc1edeb6b26a51559e23e21ec6764a6d9491fd7584f2fef32dcac8d1233a64b69662c03e8ca
6
+ metadata.gz: 841b104df941cb9238b1ed83882a8b19e2ad3fab8f6c56dc4499f5d2af4ae002567c20640b83f570838814d94a0ae43ff0bf274f5d6c32e32f1973aad6c05c5e
7
+ data.tar.gz: f6636f589dcf351a561502173347e67155d5ba4412fa11c556fb695ce5a7070441fb7510e597df657af184a432a1cc56a7ac69c1c9be3ca147ffd69951165d1f
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  major: 0
3
3
  minor: 8
4
- patch: 4
4
+ patch: 5
5
5
  pre:
@@ -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.push(:tags) if !options[:offline]
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(:push).with(:tags)
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(:push).with(:tags)
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)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zenflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.4
4
+ version: 0.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Kittelson