summaryrefslogtreecommitdiff
path: root/lib/gitlab/view/presenter/simple.rb
blob: 31dcd1d4c4c43f80675f9162eec4df22d0d4964f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Gitlab
  module View
    module Presenter
      class Simple
        include Gitlab::View::Presenter::Base

        def initialize(subject, **attributes)
          @subject = subject

          attributes.each do |key, value|
            define_singleton_method(key) { value }
          end
        end
      end
    end
  end
end