Sha256: 147fd829fc60a8c340fc101df86cd8f7b892c23757c095eeb55928b23467ccfe
Contents?: true
Size: 330 Bytes
Versions: 1
Compression:
Stored size: 330 Bytes
Contents
# frozen_string_literal: true module PUNK # @model Info # @property message(required) [string] some information for the user to see class Info < View args :message def process logger.info message "info" end protected def _dir File.join(__dir__, "..", "templates") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
punk-0.4.1 | lib/punk/views/info.rb |