Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-16Fix rubocop warningJames Lopez
2018-11-16Remove redundant end anchorsJames Lopez
2018-11-16Update regex to use unionJames Lopez
2018-11-14Fix text rendering of readme/indexJames Lopez
2018-11-02Test type of README file without extensionAchilleas Pipinellis
2018-11-02Render index.* like README.* when it's present in a directoryJakub Jirutka
Resolves #18933
2018-10-22Enable frozen string for lib/gitlab/*.rbgfyoung
2018-10-13Remove Koding integration and documentationStan Hu
This integration no longer works and does not appear to be supported. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/39697
2018-09-06Recognize 'UNLICENSE' license filesJ.D. Bean
2018-05-22Fix Xcode project detection by looking for dirs instead of filesDouwe Maan
2018-05-09Add Repository#xcode_project? methodDouwe Maan
2018-01-31Enable RuboCop Style/RegexpLiteralTakuya Noguchi
2017-10-12Cache issuable template namesSean McGivern
We were looking these up on each request to an issue page, because the form is pre-filled, as is the template dropdown. That was unnecessary: we could just treat these as 'special' repository files (like the rendered README) and cache them in Redis until they change on a push.
2017-10-12Match full file path in FileDetectorSean McGivern
The basename appears to have been a holdover from the past - it doesn't look necessary now. Some of the regexes were unanchored on one side, so explicitly ensure that they only match the root. Apart from that, this means that pushing to foo/README.md will no longer invalidate the main README cache for a project.
2017-05-17Add auxiliary blob viewers to dependency filesDouwe Maan
2017-05-13Select dependency linker based on file typeDouwe Maan
2017-05-11Implement auxiliary blob viewersDouwe Maan
2017-02-23Enable Style/MutableConstantDouwe Maan
2016-11-21Unify detecting of special repository filesYorick Peterse
This moves the logic of detecting special repository files (e.g. a README or a Koding configuration file) to a single class: Gitlab::FileDetector. Moving this logic into a single place allows this to be re-used more easily. This commit also changes Repository#gitlab_ci_yaml so that its cached similar to other data (e.g. the Koding configuration file).