class DependencyUpdater::Messengers::GitlabMessenger

Public Instance Methods

backing_out(branch) click to toggle source
# File lib/dependency_updater/messengers.rb, line 21
      def backing_out(branch)
        puts <<~MSG
        Dependency Updater found nothing to update at this time
        Deleting branch #{branch}
        MSG
      end
commit(message) click to toggle source
# File lib/dependency_updater/messengers.rb, line 10
def commit(message)
  puts "Made commit: #{message}"
end
new_branch(name) click to toggle source
# File lib/dependency_updater/messengers.rb, line 6
def new_branch(name)
  puts "Checked out new branch: #{name}"
end
new_mr(title, web_url) click to toggle source
# File lib/dependency_updater/messengers.rb, line 14
      def new_mr(title, web_url)
        puts <<~MSG
        Opened a new MR with title: #{title}
        Find it here: #{web_url}
        MSG
      end