Sha256: f76d87bb33940bbcc9af12a930be15a1321ca0a87b3f9bb393c90b280a666dfd
Contents?: true
Size: 347 Bytes
Versions: 30
Compression:
Stored size: 347 Bytes
Contents
module Pageflow # Base class for Arbre components defined by Pageflow. Store the # builder method name to facilitate calling it in specs. class ViewComponent < Arbre::Component class << self attr_reader :builder_method_name end def self.builder_method(name) @builder_method_name = name super end end end
Version data entries
30 entries across 30 versions & 1 rubygems