Module: Meander::CommonMethods

Included in:
Mutable, Plain
Defined in:
lib/meander/common_methods.rb

Overview

:nodoc:

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



11
12
13
14
15
16
17
18
19
20
# File 'lib/meander/common_methods.rb', line 11

def self.included(base)
  base.extend ClassMethods
  class << base
    attr_writer :cover_class

    def cover_class
      @cover_class ||= self
    end
  end
end