# File lib/fastcst/repo.rb, line 353 353: def find_changeset(uuid) 354: # try to load the meta-data file out of the directory 355: full_path = File.join(@root_dir, uuid) 356: 357: md_file = find_meta_data(uuid) 358: 359: if md_file 360: md = MetaData.load_metadata(md_file) 361: # return the path to the user 362: return full_path, md 363: else 364: return nil, nil 365: end 366: end