paper-trail-gem--paper_trail/lib/paper_trail/config.rb

12 lines
194 B
Ruby

module PaperTrail
class Config
include Singleton
attr_accessor :enabled
def initialize
# Indicates whether PaperTrail is on or off.
@enabled = true
end
end
end