BigW Consortium Gitlab

presentable.rb 141 Bytes
module Presentable
  def present(**attributes)
    Gitlab::View::Presenter::Factory
      .new(self, attributes)
      .fabricate!
  end
end