Sha256: 4e0aa0835770e8a9d60bfbbc0727786cc1c34ea5ec8d897a7245938f70ade4d6
Contents?: true
Size: 327 Bytes
Versions: 12
Compression:
Stored size: 327 Bytes
Contents
module Voltron class Config def encrypt @encrypt ||= Encrypt.new end class Encrypt attr_accessor :offset, :seed, :blacklist def initialize @offset ||= 262144 @seed ||= "" @blacklist ||= Rails.root.join("config", "locales", "blacklist.txt") end end end end
Version data entries
12 entries across 12 versions & 1 rubygems