Sha256: 068ef064b30b9ec07295e46222787810da139612fb4d69653e2deceb53848ea3
Contents?: true
Size: 1.37 KB
Versions: 3
Compression:
Stored size: 1.37 KB
Contents
require "active_support/all" require "i18n" require "protector/version" require "protector/dsl" require "protector/adapters/active_record" require "protector/adapters/sequel" require "protector/engine" if defined?(Rails) I18n.load_path += Dir[File.expand_path File.join('..', 'locales', '*.yml'), File.dirname(__FILE__)] module Protector class << self ADAPTERS = [ Protector::Adapters::ActiveRecord, Protector::Adapters::Sequel ] attr_accessor :config def paranoid= "`Protector.paranoid = ...` is deprecated! Please change it to `Protector.config.paranoid = ...`" end # Allows executing any code having Protector globally disabled def insecurely(&block) Thread.current[:protector_disabled_nesting] ||= 0 Thread.current[:protector_disabled_nesting] += 1 Thread.current[:protector_disabled] = true yield ensure Thread.current[:protector_disabled_nesting] -= 1 if Thread.current[:protector_disabled_nesting] == 0 Thread.current[:protector_disabled] = false end end def activate! ADAPTERS.each{|adapter| adapter.activate!} end end class Config < ActiveSupport::OrderedOptions def paranoid? !!paranoid end def strong_parameters? strong_parameters == nil || !!strong_parameters end end self.config = Config.new end Protector.activate!
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
protector-0.6.4 | lib/protector.rb |
protector-0.6.3 | lib/protector.rb |
protector-0.6.2 | lib/protector.rb |