class ROBundle::ManifestEntry
This is the bass class of things which can appear in the manifest:
Public Class Methods
new
click to toggle source
Create a new ManifestEntry
with an empty structure and the edited
flag set to false.
# File lib/ro-bundle/ro/manifest-entry.rb 24 def initialize 25 @structure = {} 26 @edited = false 27 end
Public Instance Methods
edited? → true or false
click to toggle source
Has this ManifestEntry
been edited?
# File lib/ro-bundle/ro/manifest-entry.rb 33 def edited? 34 @edited 35 end
Private Instance Methods
structure()
click to toggle source
# File lib/ro-bundle/ro/manifest-entry.rb 46 def structure 47 @structure 48 end