Class: Chamber::Filters::TranslateSecureKeysFilter

Inherits:
Object
  • Object
show all
Defined in:
lib/chamber/filters/translate_secure_keys_filter.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ TranslateSecureKeysFilter



15
16
17
18
# File 'lib/chamber/filters/translate_secure_keys_filter.rb', line 15

def initialize(options = {})
  self.data             = options.fetch(:data).dup
  self.secure_key_token = /\A#{Regexp.escape(options.fetch(:secure_key_prefix))}/
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



12
13
14
# File 'lib/chamber/filters/translate_secure_keys_filter.rb', line 12

def data
  @data
end

#secure_key_tokenObject

Returns the value of attribute secure_key_token.



12
13
14
# File 'lib/chamber/filters/translate_secure_keys_filter.rb', line 12

def secure_key_token
  @secure_key_token
end

Class Method Details

.execute(options = {}) ⇒ Object



8
9
10
# File 'lib/chamber/filters/translate_secure_keys_filter.rb', line 8

def self.execute(options = {})
  new(options).__send__(:execute)
end