Class: Insika::Doctor::DomainEntry
- Inherits:
-
Data
- Object
- Data
- Insika::Doctor::DomainEntry
- Defined in:
- lib/insika/doctor.rb
Overview
one entry of the domain inventory. The engine never GUESSES a store (D3) — every entry is something a deployment explicitly declared, or the built-in corpus still in effect (source "gem-default"). A broken enumerator degrades to one error-marked entry, never raises.
Instance Attribute Summary collapse
-
#agent ⇒ Object
readonly
Returns the value of attribute agent.
-
#detail ⇒ Object
readonly
Returns the value of attribute detail.
-
#how_to_clear ⇒ Object
readonly
Returns the value of attribute how_to_clear.
-
#kind ⇒ Object
readonly
Returns the value of attribute kind.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
Instance Method Summary collapse
Instance Attribute Details
#agent ⇒ Object (readonly)
Returns the value of attribute agent
64 65 66 |
# File 'lib/insika/doctor.rb', line 64 def agent @agent end |
#detail ⇒ Object (readonly)
Returns the value of attribute detail
64 65 66 |
# File 'lib/insika/doctor.rb', line 64 def detail @detail end |
#how_to_clear ⇒ Object (readonly)
Returns the value of attribute how_to_clear
64 65 66 |
# File 'lib/insika/doctor.rb', line 64 def how_to_clear @how_to_clear end |
#kind ⇒ Object (readonly)
Returns the value of attribute kind
64 65 66 |
# File 'lib/insika/doctor.rb', line 64 def kind @kind end |
#source ⇒ Object (readonly)
Returns the value of attribute source
64 65 66 |
# File 'lib/insika/doctor.rb', line 64 def source @source end |
Instance Method Details
#to_h ⇒ Object
65 66 67 68 |
# File 'lib/insika/doctor.rb', line 65 def to_h { "kind" => kind, "agent" => agent, "detail" => detail, "source" => source, "how_to_clear" => how_to_clear }.compact end |