Class: Ccp::Receivers::Base

Inherits:
Object
  • Object
show all
Includes:
Fixtures, Aroundable, Commentable, Core, Executable, Profileable, Settings, Skippable, Variables
Defined in:
lib/ccp/receivers/base.rb

Direct Known Subclasses

Global

Constant Summary

Constants included from Fixtures

Fixtures::NotFound

Class Method Summary collapse

Methods included from Skippable

#execute

Methods included from Aroundable

#execute

Methods included from Profileable

#execute, #profiles, #show_profiles

Methods included from Utils::Colorize

#aqua, #blue, #colorize, #green, #pink, #red, #yellow

Methods included from Executable

#execute

Methods included from Commentable

#comment, #comments, #show_comments

Methods included from Variables

#data, #data?, #parse!

Methods included from Settings

#[], #[]=, #settings

Methods included from Core

#inspect, #setup

Class Method Details

.new(*args) ⇒ Object

ensure to call ‘#setup’ for module initializations



17
# File 'lib/ccp/receivers/base.rb', line 17

def self.new(*args) r = super; r.setup; r; end