Sha256: b0b7cc047563705c929933d336423758a36401b8ea57e62a93e7abb7ed17c428

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

module Xcov
  class SlackPoster

    def run(report)
      return if Xcov.config[:skip_slack]
      return if Xcov.config[:slack_url].to_s.empty?

      require 'slack-notifier'

      slack_options = {username: Xcov.config[:slack_username]}

      channel = Xcov.config[:slack_channel]
      if channel.to_s.length > 0
        channel = ('#' + channel) unless ['#', '@'].include?(channel[0])
        slack_options[:channel] = channel
      end

      notifier = Slack::Notifier.new(Xcov.config[:slack_url], options: slack_options)

      attachments = []

      report.targets.each do |target|
        attachments << {
          text: "#{target.name}: #{target.displayable_coverage}",
          color: target.coverage_color,
          short: true
        }
      end

      begin
        result = notifier.ping(
          Xcov.config[:slack_message],
          icon_url: 'https://s3-eu-west-1.amazonaws.com/fastlane.tools/fastlane.png',
          attachments: attachments
        )

        UI.message 'Successfully sent Slack notification'.green

      rescue Exception => e
        UI.error "xcov failed to upload results to slack. error: #{e.to_s}"
      end
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xcov-1.3.2 lib/xcov/slack_poster.rb