Method: Gzr::Commands::Plan#cat

Defined in:
lib/gzr/commands/plan.rb

#cat(plan_id) ⇒ Object



119
120
121
122
123
124
125
126
# File 'lib/gzr/commands/plan.rb', line 119

def cat(plan_id)
  if options[:help]
    invoke :help, ['cat']
  else
    require_relative 'plan/cat'
    Gzr::Commands::Plan::Cat.new(plan_id,options).execute
  end
end