Welcome to mirror list, hosted at ThFree Co, Russian Federation.

signature_type.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 804f42b6f72fa0d1bc7c68c7cd29c20ea375fc63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module SignatureType
  TYPES = %i[gpg ssh x509].freeze

  def type
    raise NoMethodError, 'must implement `type` method'
  end

  TYPES.each do |type|
    define_method("#{type}?") { self.type == type }
  end
end