Sha256: 38b27dfbebe49c10597105efe9eabe311a40a1f2ffc03729277e6e7b37862870
Contents?: true
Size: 327 Bytes
Versions: 9
Compression:
Stored size: 327 Bytes
Contents
# frozen_string_literal: true module ExceptionTrack class Configuration # environments for store Exception log in to database. # default: [:development, :production] attr_accessor :environments def enabled_env?(env) return false if env.blank? environments.include?(env.to_sym) end end end
Version data entries
9 entries across 9 versions & 1 rubygems