Module: Meander::CommonMethods
Overview
:nodoc:
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/meander/common_methods.rb', line 9 def self.included(base) base.extend ClassMethods base.instance_eval do def cover_class=(val) @cover_class = val end def cover_class @cover_class ||= self end end end |