Class: Authorization::DevelopmentSupport::Analyzer::Report
- Inherits:
-
Object
- Object
- Authorization::DevelopmentSupport::Analyzer::Report
- Defined in:
- lib/declarative_authorization/development_support/analyzer.rb
Instance Attribute Summary collapse
-
#filename ⇒ Object
readonly
Returns the value of attribute filename.
-
#line ⇒ Object
readonly
Returns the value of attribute line.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type, filename, line, msg) ⇒ Report
constructor
A new instance of Report.
Constructor Details
#initialize(type, filename, line, msg) ⇒ Report
Returns a new instance of Report.
252 253 254 255 256 257 |
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 252 def initialize (type, filename, line, msg) @type = type @filename = filename @line = line = msg end |
Instance Attribute Details
#filename ⇒ Object (readonly)
Returns the value of attribute filename.
251 252 253 |
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 251 def filename @filename end |
#line ⇒ Object (readonly)
Returns the value of attribute line.
251 252 253 |
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 251 def line @line end |
#message ⇒ Object (readonly)
Returns the value of attribute message.
251 252 253 |
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 251 def end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
251 252 253 |
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 251 def type @type end |