Sha256: 12d6ff4fbcea2fd3e751e8b493987bdb92d79b275273dbe295e69a334ea0c039

Contents?: true

Size: 710 Bytes

Versions: 11

Compression:

Stored size: 710 Bytes

Contents

module Vidar
  class DeployConfig
    SUCCESS_COLOR = "008800".freeze
    FAILURE_COLOR = "ff1100".freeze
    DEFAULT_COLOR = "000000".freeze

    attr_reader :name, :url,
      :default_color, :success_color, :failure_color,
      :slack_webhook_url, :sentry_webhook_url

    def initialize(options)
      @name = options.fetch(:name)
      @url = options.fetch(:url, nil)

      @default_color = options.fetch(:default_color, DEFAULT_COLOR)
      @success_color = options.fetch(:success_color, SUCCESS_COLOR)
      @failure_color = options.fetch(:failure_color, FAILURE_COLOR)

      @slack_webhook_url = options[:slack_webhook_url]
      @sentry_webhook_url = options[:sentry_webhook_url]
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
vidar-1.6.0 lib/vidar/deploy_config.rb
vidar-1.5.4 lib/vidar/deploy_config.rb
vidar-1.5.3 lib/vidar/deploy_config.rb
vidar-1.5.2 lib/vidar/deploy_config.rb
vidar-1.5.1 lib/vidar/deploy_config.rb
vidar-1.5.0 lib/vidar/deploy_config.rb
vidar-1.4.3 lib/vidar/deploy_config.rb
vidar-1.4.2 lib/vidar/deploy_config.rb
vidar-1.4.1 lib/vidar/deploy_config.rb
vidar-1.4.0 lib/vidar/deploy_config.rb
vidar-1.3.2 lib/vidar/deploy_config.rb