class PivotalIntegration::Command::Info

The class that encapsulates assigning current Pivotal Tracker Story to a user

Public Instance Methods

run(*arguments) click to toggle source
# File lib/pivotal-integration/command/info.rb, line 23
def run(*arguments)
  if story
    PivotalIntegration::Util::Story.pretty_print story
  else
    abort "No story currently selected."
  end
end