Class: BundlerSkills::Linker::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler_skills/linker.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeResult

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

#createdObject (readonly)

Returns the value of attribute created.



16
17
18
# File 'lib/bundler_skills/linker.rb', line 16

def created
  @created
end

#keptObject (readonly)

Returns the value of attribute kept.



16
17
18
# File 'lib/bundler_skills/linker.rb', line 16

def kept
  @kept
end

#prunedObject (readonly)

Returns the value of attribute pruned.



16
17
18
# File 'lib/bundler_skills/linker.rb', line 16

def pruned
  @pruned
end

#relinkedObject (readonly)

Returns the value of attribute relinked.



16
17
18
# File 'lib/bundler_skills/linker.rb', line 16

def relinked
  @relinked
end

#skippedObject (readonly)

Returns the value of attribute skipped.



16
17
18
# File 'lib/bundler_skills/linker.rb', line 16

def skipped
  @skipped
end