A helper module that allows acessing and changing data via the bracket notation.
[Source]
# File lib/webgen/plugins/filehandlers/gallery.rb, line 49 49: def []( key ) 50: @data[key] 51: end
# File lib/webgen/plugins/filehandlers/gallery.rb, line 53 53: def []=( key, value ) 54: @data[key] = value 55: end
[Validate]