Sha256: c49da6f227086144ba4f1e05d3308dc855061b0dafb23b7d8f6e7eaafbb7d60e
Contents?: true
Size: 515 Bytes
Versions: 11
Compression:
Stored size: 515 Bytes
Contents
module BitCore module ContentProviders # The default provider. class Null attr_reader :position def initialize(content_module, position) @content_module = content_module @position = position end def render_current(_options) "Content Module #{ @content_module.title }: Oops, did you expect a content provider here?" end def show_nav_link? false end def exists?(_position) false end end end end
Version data entries
11 entries across 11 versions & 1 rubygems