Class: Authorization::DevelopmentSupport::Analyzer::Report

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of Report.



243
244
245
246
247
248
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 243

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.



242
243
244
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 242

def filename
  @filename
end

#lineObject (readonly)

Returns the value of attribute line.



242
243
244
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 242

def line
  @line
end

#messageObject (readonly)

Returns the value of attribute message.



242
243
244
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 242

def message
  @message
end

#typeObject (readonly)

Returns the value of attribute type.



242
243
244
# File 'lib/declarative_authorization/development_support/analyzer.rb', line 242

def type
  @type
end