octopolo 0.3.4 → 0.3.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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MDdlNGEyM2U2YzFhNWM3YzM3NDExN2M4MTQxNTJjNTVlODRmNjQ1OA==
4
+ Mzk1M2QwM2YzMDU2YjYzMDc4YjlhMTQyZTVlMWM4NTA5ZDcxZjZhMQ==
5
5
  data.tar.gz: !binary |-
6
- ZDEzZmY5ZWQ5MmYwZTQ2ZDE2MzU3M2ZlYzdjODE3YTc3MTY4YTA1ZA==
6
+ NmQ5ZjZlNjNlM2QzZDIxOWI3ZTE0N2U2MzBjZTk5NWI0ZDQ2ZDM2NQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- OTZiMjlkZGYyZjRlZWQ3YzVmZDcyNTZkMDhkM2YyZjRlMWFhZDEyNjY2MzUw
10
- ZjhlMTliZGNkODJjZDkxMGVjZTlkNWMyZGRmMjEwYTg0YThmMDY4MTFiMzg2
11
- MmVmMGVkNjc0NDRlNzM4NzAyYjNmYmEyN2MyMmNhZjFlMGQxMWI=
9
+ ZGZhM2UyYTdhYzQ4MzNlYTE3MGFhMWFmZDRkNjg3ZTZiZjY3OTA3M2U1ODQy
10
+ ZTRlMWFiOWVkZGNmMWFlZGIwZWNkZGQ0MjBhNDBiZDhjNTA4Nzg0YWQ2Mjlh
11
+ YWI5ZjBiZDRhMTdkOWI5ZGM3NjBkNmI5YThiODkyNTQ2NTUwZWQ=
12
12
  data.tar.gz: !binary |-
13
- NTExNGU4YTI5Mjc2NzRmOWM1OTc5NmZiMjVhNWIzNWQzN2RmYjgzMjRlNzQw
14
- OThmNjhhODdkNjk2YTFkZTZhY2FiNzI4YjI4NDkxYmE5NzZhMmJlZDU2MDM1
15
- M2QwOWQxOTJkMTMyYjUzZWRhMjYzNmQ0ZjExZmQ2MjA5Y2VlN2U=
13
+ MGRjZjkxZWJhNzQ1MzlmZjQ0MTQ4MWYxOGQzMjI2Mzk3ZWMyMmFhNGViMDI3
14
+ M2FlOTk2YTEzYTE2NGE0YzAxNDI0ODVkY2U3MDVkNDM0NWIzZmJiOWM1ZDUz
15
+ NzYyZDU5ZWRjMjFhM2NlN2JhNjkxNGVmZjJmYzA5OWM2NzhkOGE=
data/CHANGELOG.markdown CHANGED
@@ -1,3 +1,8 @@
1
+ #### v0.3.5
2
+ * Dated branch delete flag patch
3
+
4
+ > Brian Bergstrom: Andy Fleener: https://github.com/sportngin/octopolo/pull/50
5
+
1
6
  #### v0.3.4
2
7
  * Adding delete flag to dated branch creation commands for non-interactive support
3
8
 
@@ -27,7 +27,7 @@ module Octopolo
27
27
  #
28
28
  # Returns a DatedBranchCreator
29
29
  def self.perform(branch_type, should_delete_old_branches=false)
30
- new(branch_type).tap do |creator|
30
+ new(branch_type, should_delete_old_branches).tap do |creator|
31
31
  creator.perform
32
32
  end
33
33
  end
@@ -1,3 +1,3 @@
1
1
  module Octopolo
2
- VERSION = "0.3.4"
2
+ VERSION = "0.3.5"
3
3
  end
@@ -21,9 +21,9 @@ module Octopolo
21
21
  let(:creator) { stub(:DatedBranchCreator) }
22
22
 
23
23
  it "instantiates a new creator and performs it" do
24
- DatedBranchCreator.should_receive(:new).with(type) { creator }
24
+ DatedBranchCreator.should_receive(:new).with(type, true) { creator }
25
25
  creator.should_receive(:perform)
26
- DatedBranchCreator.perform(type).should == creator
26
+ DatedBranchCreator.perform(type, true).should == creator
27
27
  end
28
28
  end
29
29
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopolo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Byrne