# File lib/fastcst/metadata.rb, line 89 89: def MetaData.add_disposition(md_file, type, id, relation) 90: MetaData.update_md(md_file) do |md| 91: disp = {} 92: disp["Type"] = type 93: disp["ID"] = id 94: disp["Relation"] = relation 95: 96: md["Disposition"] ||= [] 97: md["Disposition"] << disp 98: end 99: end