Class: BundlerSkills::Linker::Result
- Inherits:
-
Object
- Object
- BundlerSkills::Linker::Result
- Defined in:
- lib/bundler_skills/linker.rb
Instance Attribute Summary collapse
-
#created ⇒ Object
readonly
Returns the value of attribute created.
-
#kept ⇒ Object
readonly
Returns the value of attribute kept.
-
#pruned ⇒ Object
readonly
Returns the value of attribute pruned.
-
#relinked ⇒ Object
readonly
Returns the value of attribute relinked.
-
#skipped ⇒ Object
readonly
Returns the value of attribute skipped.
Instance Method Summary collapse
-
#initialize ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize ⇒ Result
Returns a new instance of Result.
18 19 20 21 22 23 24 |
# File 'lib/bundler_skills/linker.rb', line 18 def initialize @created = [] @kept = [] @relinked = [] @skipped = [] @pruned = [] end |
Instance Attribute Details
#created ⇒ Object (readonly)
Returns the value of attribute created.
16 17 18 |
# File 'lib/bundler_skills/linker.rb', line 16 def created @created end |
#kept ⇒ Object (readonly)
Returns the value of attribute kept.
16 17 18 |
# File 'lib/bundler_skills/linker.rb', line 16 def kept @kept end |
#pruned ⇒ Object (readonly)
Returns the value of attribute pruned.
16 17 18 |
# File 'lib/bundler_skills/linker.rb', line 16 def pruned @pruned end |
#relinked ⇒ Object (readonly)
Returns the value of attribute relinked.
16 17 18 |
# File 'lib/bundler_skills/linker.rb', line 16 def relinked @relinked end |
#skipped ⇒ Object (readonly)
Returns the value of attribute skipped.
16 17 18 |
# File 'lib/bundler_skills/linker.rb', line 16 def skipped @skipped end |