Class: Packages::UpdateMessage
- Inherits:
-
Struct
- Object
- Struct
- Packages::UpdateMessage
- Defined in:
- library/packages/src/lib/packages/update_message.rb
Overview
Represents an update message from libzypp.
Instance Attribute Summary collapse
-
#current_path ⇒ String
readonly
Path to the file which contains the message in the running system.
-
#installation_path ⇒ String
readonly
Path to the file which contains the message in the installed system.
-
#solvable ⇒ String
readonly
Name of the solvable libzypp element (usually the package's name).
-
#text ⇒ String
readonly
Message's text.
Instance Attribute Details
#current_path ⇒ String (readonly)
Returns Path to the file which contains the message in the running system. While running inst-sys, it will differ from installation_path.
16 |
# File 'library/packages/src/lib/packages/update_message.rb', line 16 UpdateMessage = Struct.new(:solvable, :text, :installation_path, :current_path) |
#installation_path ⇒ String (readonly)
Returns Path to the file which contains the message in the installed system.
16 |
# File 'library/packages/src/lib/packages/update_message.rb', line 16 UpdateMessage = Struct.new(:solvable, :text, :installation_path, :current_path) |
#solvable ⇒ String (readonly)
Returns Name of the solvable libzypp element (usually the package's name).
16 |
# File 'library/packages/src/lib/packages/update_message.rb', line 16 UpdateMessage = Struct.new(:solvable, :text, :installation_path, :current_path) |
#text ⇒ String (readonly)
Returns Message's text.
16 |
# File 'library/packages/src/lib/packages/update_message.rb', line 16 UpdateMessage = Struct.new(:solvable, :text, :installation_path, :current_path) |