Sha256: 274bbbcff12dd4bb116a476f1c18f703ce9abf0cce827596a366bbe28bcc3eec
Contents?: true
Size: 355 Bytes
Versions: 77
Compression:
Stored size: 355 Bytes
Contents
# frozen_string_literal: true require_relative "template_support" module Onebox class View < Mustache include TemplateSupport attr_reader :record def initialize(name, record) @record = record self.template_name = name self.template_path = load_paths.last end def to_html render(record) end end end
Version data entries
77 entries across 77 versions & 1 rubygems