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