Class: LcpRuby::SkillsInstaller::Result
- Inherits:
-
Struct
- Object
- Struct
- LcpRuby::SkillsInstaller::Result
- Defined in:
- lib/lcp_ruby/skills_installer.rb
Instance Attribute Summary collapse
-
#created ⇒ Object
Returns the value of attribute created.
-
#removed ⇒ Object
Returns the value of attribute removed.
-
#updated ⇒ Object
Returns the value of attribute updated.
Instance Method Summary collapse
Instance Attribute Details
#created ⇒ Object
Returns the value of attribute created
15 16 17 |
# File 'lib/lcp_ruby/skills_installer.rb', line 15 def created @created end |
#removed ⇒ Object
Returns the value of attribute removed
15 16 17 |
# File 'lib/lcp_ruby/skills_installer.rb', line 15 def removed @removed end |
#updated ⇒ Object
Returns the value of attribute updated
15 16 17 |
# File 'lib/lcp_ruby/skills_installer.rb', line 15 def updated @updated end |
Instance Method Details
#any_changes? ⇒ Boolean
16 17 18 |
# File 'lib/lcp_ruby/skills_installer.rb', line 16 def any_changes? created.any? || updated.any? || removed.any? end |