Method: GitWorkflow::Story#comment

Defined in:
lib/git_workflow/story.rb

#comment(message) ⇒ Object



38
39
40
41
42
43
44
# File 'lib/git_workflow/story.rb', line 38

def comment(message)
  _service!(:post, 'notes') do |xml|
    xml.note {
      xml.text(message)
    }
  end
end