class GitFlower::HotfixCLI

Public Instance Methods

create(story_name) click to toggle source
# File lib/git_flower/hotfix-cli.rb, line 38
def create(story_name)
  hotfix = Hotfix.new(
    story_name: story_name,
    labels: options[:labels],
  )
  hotfix.save!
end