Class: Authorization::Analyzer::Report

Inherits:
Object
  • Object
show all
Defined in:
lib/declarative_authorization/authorization_rules_analyzer.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type, filename, line, msg) ⇒ Report

Returns a new instance of Report.



130
131
132
133
134
135
# File 'lib/declarative_authorization/authorization_rules_analyzer.rb', line 130

def initialize (type, filename, line, msg)
  @type = type
  @filename = filename
  @line = line
  @message = msg
end

Instance Attribute Details

#filenameObject (readonly)

Returns the value of attribute filename.



129
130
131
# File 'lib/declarative_authorization/authorization_rules_analyzer.rb', line 129

def filename
  @filename
end

#lineObject (readonly)

Returns the value of attribute line.



129
130
131
# File 'lib/declarative_authorization/authorization_rules_analyzer.rb', line 129

def line
  @line
end

#messageObject (readonly)

Returns the value of attribute message.



129
130
131
# File 'lib/declarative_authorization/authorization_rules_analyzer.rb', line 129

def message
  @message
end

#typeObject (readonly)

Returns the value of attribute type.



129
130
131
# File 'lib/declarative_authorization/authorization_rules_analyzer.rb', line 129

def type
  @type
end