Module: Jobly::Helpers

Included in:
Job, OtherClass
Defined in:
lib/jobly/helpers.rb

Overview

This module includes all the modules that are needed for a Jobly::Job It may also be included by the user, in a non-job context (for example, in code inside the ./app folder).

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/jobly/helpers.rb', line 6

def self.included(klass)
  klass.class_eval do
    include Logging
    include Settings
    include Shell
    include Slack
  end
end