module DTK::Client::Operation::Service::Edit::Internal

Public Class Methods

prompt_for_commit_message() click to toggle source
# File lib/client/operation/service/edit.rb, line 45
def self.prompt_for_commit_message
  commit_msg = OsUtil.user_input("Commit message")
  commit_msg.gsub!(/\"/,'') unless commit_msg.count('"') % 2 ==0
  commit_msg
end