summaryrefslogtreecommitdiff
path: root/app/models/concerns/signature_type.rb
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