Sha256: 8c36992ea6f5a7d0837239f0a2deab6150dc0b1cc8a03946081ffe8605cc7900
Contents?: true
Size: 832 Bytes
Versions: 1
Compression:
Stored size: 832 Bytes
Contents
require "active_support/core_ext/class/attribute_accessors" module Permisi class Config attr_accessor :backend, :permissions attr_reader :default_permissions def initialize @permissions = ::HashWithIndifferentAccess.new @default_permissions = ::HashWithIndifferentAccess.new end def backend=(chosen_backend) if chosen_backend.is_a? Symbol chosen_backend = "::Permisi::Backend::#{chosen_backend.to_s.classify}".constantize end @backend = chosen_backend rescue NameError raise Backend::InvalidBackend end def permissions=(permissions_hash) permissions_hash = HashWithIndifferentAccess.new(permissions_hash) @default_permissions = PermissionUtil.transform_namespace(permissions_hash) @permissions = permissions_hash end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
permisi-0.1.0 | lib/permisi/config.rb |