summaryrefslogtreecommitdiff
path: root/app/models/compare.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@12-6-stable-eeGitLab Bot2019-12-201-0/+1
|
* Allow getting all paths (old & new) involved in MRMark Chao2018-11-071-0/+11
| | | | Fetch database columns directly if available
* Enable frozen string in app/models/*.rbrepo-forks/gitlab-ce-frozen-string-enable-app-modelsgfyoung2018-07-261-0/+2
| | | | Partially addresses #47424.
* Remove unused Compare#base_commitosw-stop-recalculating-merge-base-on-mr-loadingOswaldo Ferreira2018-03-081-10/+5
|
* Avoid re-fetching merge-base SHA from Gitaly unnecessarilyOswaldo Ferreira2018-03-071-16/+20
|
* Refactor straight compare diff codeDmitriy Zaporozhets2016-10-121-6/+16
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Use straight diff approach when compare merge request versionsDmitriy Zaporozhets2016-10-121-1/+4
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Make Compare#diffs diff_options a regular argumentDouwe Maan2016-08-031-1/+1
|
* switch from diff_file_collection to diffs20034-safe-diffsPaco Guzman2016-08-031-18/+18
| | | | So we have raw_diffs too
* Introduce Compare model in the codebase.Paco Guzman2016-08-031-2/+45
| | | This object will manage Gitlab::Git::Compare instances
* Move to Gitlab::Diff::FileCollectionPaco Guzman2016-08-031-0/+23
Instead calling diff_collection.count use diff_collection.size which is cache on the diff_collection