Sha256: bb6f0bb74829c3ceef1de6c7dfbf93fd54e37c69b4aa7cdf74f06ecfa73f0934

Contents?: true

Size: 558 Bytes

Versions: 9

Compression:

Stored size: 558 Bytes

Contents

require "active_job_log/engine"
require "enumerize"

module ActiveJobLog
  extend self

  # You can add, in this module, your own configuration options as in the example below...
  #
  # attr_writer :my_option
  #
  # def my_option
  #   return "Default Value" unless @my_option
  #   @my_option
  # end
  #
  # Then, you can customize the default behaviour (typically in a Rails initializer) like this:
  #
  # ActiveJobLog.setup do |config|
  #   config.root_url = "Another value"
  # end

  def setup
    yield self
    require "active_job_log"
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
active_job_log-3.0.0 lib/active_job_log.rb
active_job_log-2.1.0 lib/active_job_log.rb
active_job_log-2.0.0 lib/active_job_log.rb
active_job_log-1.2.0 lib/active_job_log.rb
active_job_log-1.1.0 lib/active_job_log.rb
active_job_log-1.0.0 lib/active_job_log.rb
active_job_log-0.2.1 lib/active_job_log.rb
active_job_log-0.2.0 lib/active_job_log.rb
active_job_log-0.1.0 lib/active_job_log.rb