Class: Lev::Configuration

Inherits:
Object show all
Defined in:
lib/lev.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



57
58
59
60
61
# File 'lib/lev.rb', line 57

def initialize      
  @form_error_class = 'error'
  @security_transgression_error = Lev::SecurityTransgression
  super
end

Instance Attribute Details

#form_error_classObject

This HTML class is added to form fields that caused errors



54
55
56
# File 'lib/lev.rb', line 54

def form_error_class
  @form_error_class
end

#security_transgression_errorObject

Returns the value of attribute security_transgression_error.



55
56
57
# File 'lib/lev.rb', line 55

def security_transgression_error
  @security_transgression_error
end