Class: Fastlane::Actions::PeripheryAction::Result
- Inherits:
-
Object
- Object
- Fastlane::Actions::PeripheryAction::Result
- Defined in:
- lib/fastlane/plugin/periphery/actions/periphery_action.rb
Overview
Instance Attribute Summary collapse
-
#accessibility ⇒ Object
readonly
Returns the value of attribute accessibility.
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#hints ⇒ Object
readonly
Returns the value of attribute hints.
-
#ids ⇒ Object
readonly
Returns the value of attribute ids.
-
#kind ⇒ Object
readonly
Returns the value of attribute kind.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#modifiers ⇒ Object
readonly
Returns the value of attribute modifiers.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(raw) ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize(raw) ⇒ Result
Returns a new instance of Result.
15 16 17 18 19 20 21 22 23 24 |
# File 'lib/fastlane/plugin/periphery/actions/periphery_action.rb', line 15 def initialize(raw) @kind = raw['kind'] @name = raw['name'] @modifiers = raw['modifiers'] @attributes = raw['attributes'] @accessibility = raw['accessibility'] @ids = raw['ids'] @hints = raw['hints'] @location = raw['location'] end |
Instance Attribute Details
#accessibility ⇒ Object (readonly)
Returns the value of attribute accessibility.
13 14 15 |
# File 'lib/fastlane/plugin/periphery/actions/periphery_action.rb', line 13 def accessibility @accessibility end |
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
13 14 15 |
# File 'lib/fastlane/plugin/periphery/actions/periphery_action.rb', line 13 def attributes @attributes end |
#hints ⇒ Object (readonly)
Returns the value of attribute hints.
13 14 15 |
# File 'lib/fastlane/plugin/periphery/actions/periphery_action.rb', line 13 def hints @hints end |
#ids ⇒ Object (readonly)
Returns the value of attribute ids.
13 14 15 |
# File 'lib/fastlane/plugin/periphery/actions/periphery_action.rb', line 13 def ids @ids end |
#kind ⇒ Object (readonly)
Returns the value of attribute kind.
13 14 15 |
# File 'lib/fastlane/plugin/periphery/actions/periphery_action.rb', line 13 def kind @kind end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
13 14 15 |
# File 'lib/fastlane/plugin/periphery/actions/periphery_action.rb', line 13 def location @location end |
#modifiers ⇒ Object (readonly)
Returns the value of attribute modifiers.
13 14 15 |
# File 'lib/fastlane/plugin/periphery/actions/periphery_action.rb', line 13 def modifiers @modifiers end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
13 14 15 |
# File 'lib/fastlane/plugin/periphery/actions/periphery_action.rb', line 13 def name @name end |