git-topic 0.2.7 → 0.2.7.1

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.
data/Gemfile.lock CHANGED
@@ -10,7 +10,7 @@ GEM
10
10
  gemcutter (0.5.0)
11
11
  json_pure
12
12
  git (1.2.5)
13
- git-topic (0.2.7)
13
+ git-topic (0.2.7.1)
14
14
  activesupport (~> 3.0)
15
15
  git-topic
16
16
  trollop
data/History.rdoc CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.2.7.1
2
+
3
+ * changes
4
+ - added --continue flag to cli.
5
+
1
6
  === 0.2.7
2
7
 
3
8
  * issues closed
data/VERSION.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :major: 0
3
3
  :minor: 2
4
4
  :patch: 7
5
- :build:
5
+ :build: "1"
data/lib/git_topic.rb CHANGED
@@ -34,7 +34,7 @@ module GitTopic
34
34
 
35
35
  # Switch to a branch for the given topic.
36
36
  def work_on topic, opts={}
37
- opts.assert_valid_keys :continue, :upstream, *GlobalOptKeys
37
+ opts.assert_valid_keys :continue, :continue_given, :upstream, *GlobalOptKeys
38
38
  raise "Topic must be specified" if topic.nil?
39
39
 
40
40
  upstream =
data/lib/git_topic/cli.rb CHANGED
@@ -96,6 +96,10 @@ module GitTopic
96
96
 
97
97
  Options:
98
98
  ".unindent
99
+
100
+ opt :continue,
101
+ "Use latest review branch as <upstream>",
102
+ :default => false
99
103
  when "abandon"
100
104
  banner "
101
105
  git[-topic] abandon [<topic>]
metadata CHANGED
@@ -6,7 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 2
8
8
  - 7
9
- version: 0.2.7
9
+ - 1
10
+ version: 0.2.7.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - David J. Hamilton