Lines Matching refs:version
22 version = create_version(ontology, commit_oid, ontology_version_options,
27 async_parse_version(version) if do_parse
29 version
83 def async_parse_version(version)
84 return if version.nil?
85 version.update_state! :pending
88 job.kill if job.args.first == version.id
92 perform_async([[version.id,
93 {fast_parse: version.fast_parse,
94 files_to_parse_afterwards: version.
146 version = ontology.versions.build(
155 version.files_to_parse_afterwards = files_to_parse(ontology, changed_files)
156 version.save!
157 ontology.ontology_version = version
160 version
175 optioned_versions = versions.map do |version|
176 [version.id, {fast_parse: version.fast_parse}, 1]