module Jobly::Helpers

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).

Public Class Methods

included(klass) click to toggle source
# 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