lib/git_reflow/commands/status.rb in git_reflow-0.8.3 vs lib/git_reflow/commands/status.rb in git_reflow-0.8.4

- old
+ new

@@ -1,8 +1,7 @@ desc 'Display information about the status of your feature in the review process' arg_name "destination_branch - the branch you're merging your feature into ('master' is default)" command :status do |c| c.action do |global_options, options, args| - destination_branch = args[0] || 'master' - GitReflow.status destination_branch + GitReflow.status destination_branch: args[0] end end