class Durt::Command::EditEstimate

Public Class Methods

new() click to toggle source
# File lib/durt/ebs_plugin.rb, line 52
def initialize
  controller = Durt::ProjectController.new

  steps << ->(_state) { controller.current_issue }
  steps << ->(issue) { controller.edit_estimate(issue) }
end