Class: Gemkeeper::ManifestBuilder::Result
- Inherits:
-
Struct
- Object
- Struct
- Gemkeeper::ManifestBuilder::Result
- Defined in:
- lib/gemkeeper/manifest_builder.rb
Instance Attribute Summary collapse
-
#added_count ⇒ Object
Returns the value of attribute added_count.
-
#already_mapped_count ⇒ Object
Returns the value of attribute already_mapped_count.
-
#candidates ⇒ Object
Returns the value of attribute candidates.
-
#manifest ⇒ Object
Returns the value of attribute manifest.
-
#skipped_count ⇒ Object
Returns the value of attribute skipped_count.
Instance Method Summary collapse
Instance Attribute Details
#added_count ⇒ Object
Returns the value of attribute added_count
6 7 8 |
# File 'lib/gemkeeper/manifest_builder.rb', line 6 def added_count @added_count end |
#already_mapped_count ⇒ Object
Returns the value of attribute already_mapped_count
6 7 8 |
# File 'lib/gemkeeper/manifest_builder.rb', line 6 def already_mapped_count @already_mapped_count end |
#candidates ⇒ Object
Returns the value of attribute candidates
6 7 8 |
# File 'lib/gemkeeper/manifest_builder.rb', line 6 def candidates @candidates end |
#manifest ⇒ Object
Returns the value of attribute manifest
6 7 8 |
# File 'lib/gemkeeper/manifest_builder.rb', line 6 def manifest @manifest end |
#skipped_count ⇒ Object
Returns the value of attribute skipped_count
6 7 8 |
# File 'lib/gemkeeper/manifest_builder.rb', line 6 def skipped_count @skipped_count end |
Instance Method Details
#any_changes? ⇒ Boolean
8 9 10 |
# File 'lib/gemkeeper/manifest_builder.rb', line 8 def any_changes? added_count.positive? end |
#empty? ⇒ Boolean
12 13 14 |
# File 'lib/gemkeeper/manifest_builder.rb', line 12 def empty? candidates.empty? end |