Class: Sublayer::Agents::A11yAgent
- Inherits:
-
Base
- Object
- Base
- Sublayer::Agents::A11yAgent
- Defined in:
- lib/a11y_agent.rb
Instance Method Summary collapse
-
#initialize(file:) ⇒ A11yAgent
constructor
A new instance of A11yAgent.
Constructor Details
#initialize(file:) ⇒ A11yAgent
Returns a new instance of A11yAgent.
28 29 30 31 32 33 |
# File 'lib/a11y_agent.rb', line 28 def initialize(file:) @accessibility_issues = [] @issue_types = [] @file = file @file_contents = File.read(@file) end |