git-topic 0.2.7 → 0.2.7.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/History.rdoc +5 -0
- data/VERSION.yml +1 -1
- data/lib/git_topic.rb +1 -1
- data/lib/git_topic/cli.rb +4 -0
- metadata +2 -1
data/Gemfile.lock
CHANGED
data/History.rdoc
CHANGED
data/VERSION.yml
CHANGED
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