Sha256: c1db0cc69c98c06844e8a37ae87c2fa1b0d334a1314d490aa9045f6292b4122f
Contents?: true
Size: 278 Bytes
Versions: 1
Compression:
Stored size: 278 Bytes
Contents
require 'singleton' module PaperTrail class Config include Singleton attr_accessor :enabled, :timestamp_field def initialize # Indicates whether PaperTrail is on or off. @enabled = true @timestamp_field = :created_at end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
paper_trail-2.6.4 | lib/paper_trail/config.rb |