Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Manually correct autocorrect | Douwe Maan | 2017-02-23 | 1 | -2/+2 |
| | |||||
* | Move up delegate calls | Douwe Maan | 2017-02-23 | 7 | -27/+23 |
| | |||||
* | ActiveSupport delegation is preferred over Forwardable | Douwe Maan | 2017-02-23 | 1 | -4/+5 |
| | |||||
* | Fix new offenses | Douwe Maan | 2017-02-23 | 3 | -3/+3 |
| | |||||
* | Enable Rails/Delegate | Douwe Maan | 2017-02-23 | 11 | -60/+21 |
| | |||||
* | Enable Style/WordArray | Douwe Maan | 2017-02-23 | 12 | -22/+22 |
| | |||||
* | Enable Style/MultilineHashBraceLayout | Douwe Maan | 2017-02-23 | 6 | -17/+16 |
| | |||||
* | Enable Style/EmptyLineBetweenDefs | Douwe Maan | 2017-02-23 | 1 | -0/+1 |
| | |||||
* | Enable Style/ClassCheck | Douwe Maan | 2017-02-23 | 5 | -5/+5 |
| | |||||
* | Prefer leading style for Style/DotPosition | Douwe Maan | 2017-02-23 | 117 | -525/+525 |
| | |||||
* | Fix code for cops | Douwe Maan | 2017-02-23 | 16 | -91/+106 |
| | |||||
* | Enable Style/ConditionalAssignment | Douwe Maan | 2017-02-23 | 15 | -46/+46 |
| | |||||
* | Enable Style/ColonMethodCall | Douwe Maan | 2017-02-23 | 6 | -9/+9 |
| | |||||
* | Enable Style/BarePercentLiterals | Douwe Maan | 2017-02-23 | 2 | -2/+2 |
| | |||||
* | Enable Rails/Validation | Douwe Maan | 2017-02-23 | 11 | -16/+16 |
| | |||||
* | Enable Performance/RedundantMatch | Douwe Maan | 2017-02-23 | 1 | -1/+1 |
| | |||||
* | Enable Performance/RedundantBlockCall | Douwe Maan | 2017-02-23 | 1 | -1/+1 |
| | |||||
* | Enable Performance/RedundantMerge | Douwe Maan | 2017-02-23 | 7 | -12/+10 |
| | |||||
* | Enable Style/SpaceInsideBrackets | Douwe Maan | 2017-02-23 | 4 | -8/+8 |
| | |||||
* | Enable Style/MutableConstant | Douwe Maan | 2017-02-23 | 33 | -45/+45 |
| | |||||
* | Enable Style/DotPosition | Douwe Maan | 2017-02-23 | 57 | -229/+229 |
| | |||||
* | Merge branch '26900-pipelines-tabs' into 'master' | Kamil Trzciński | 2017-02-23 | 4 | -9/+33 |
|\ | | | | | | | | | | | | | Resolve "CI - Pipelines and Builds screens are inconsistent" Closes #26900 See merge request !9265 | ||||
| * | Merge branch 'master' into 26900-pipelines-tabs26900-pipelines-tabs | Filipa Lacerda | 2017-02-23 | 286 | -1830/+1751 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (361 commits) Code style improvements remove require.context from network_bundle remove require.context from graphs_bundle remove require.context from filtered_search_bundle Ignore two Rails CVEs in bundler:audit job Remove Pages readme Change Pages redirect Add missing index.md to Pages docs Added double newline after file upload markdown insert Reorder main index items in Pages overview remove html comments remove <> wrapping text - part 3 wrapping text - part 2 [ci skip] fix link wrap text - part 1 - [ci skip] typo fix spelling, add intermediate cert link Improve `Gitlab::EeCompatCheck` by using the `git apply --3way` flag remove link to unfinished video ... | ||||
| * | | Adds Pending and Finished tabs to pipelines page | Filipa Lacerda | 2017-02-16 | 4 | -9/+33 |
| | | | | | | | | | | | | Fix broken test | ||||
* | | | Merge branch 'fix-test-for-build-attributes' into 'master' | Kamil Trzciński | 2017-02-23 | 1 | -3/+4 |
|\ \ \ | | | | | | | | | | | | | | | | | Fix build attributes test See merge request !9409 | ||||
| * | | | We actually want to clone project and remove gl_project_idfix-test-for-build-attributes | Lin Jen-Shin | 2017-02-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | in the future. Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9409#note_23859361 | ||||
| * | | | Fix build attributes test, see: | Lin Jen-Shin | 2017-02-21 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9021#note_23782188 This is discovered by https://gitlab.com/gitlab-org/gitlab-ce/builds/10815456 I removed `gl_project_id` and this is failing. I took some look, realizing that: * `trace` is duplicated in `attributes` * `tag_list` is not included in `build.attributes` * `artifacts_expire_at` is missing in `attributes` So we need to: * Remove duplicated `trace` in `attributes` (40 -> 39) * Remove `tag_list` in `attributes` (39 -> 38) * Add `artifacts_expire_at` to `attributes` (38 -> 39) * Add `gl_project_id` to `attributes` (39 -> 40) | ||||
* | | | | Merge branch '26570-optimize-latest-pipeline-query' into 'master' | Kamil Trzciński | 2017-02-23 | 1 | -2/+5 |
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | Optimize Ci::Pipeline.latest query Closes #26570 See merge request !9306 | ||||
| * | | | Consider the case where we don't specify ref for pipeline | Lin Jen-Shin | 2017-02-20 | 1 | -3/+5 |
| | | | | |||||
| * | | | Optimize Ci::Pipeline.latest query | Lin Jen-Shin | 2017-02-20 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since we already know which ref we want, we could filter it out first. Feedback: https://gitlab.com/gitlab-org/gitlab-ce/issues/26570#note_23423376 Closes #26570 | ||||
* | | | | Merge branch '28495-content-shifting' into 'master' | Filipa Lacerda | 2017-02-23 | 1 | -10/+6 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Keep right padding the same whether sidebar is open or not Closes #28495 See merge request !9422 | ||||
| * | | | | Keep right padding the same whether sidebar is open or not28495-content-shifting | Annabel Dunstone Gray | 2017-02-21 | 1 | -10/+6 |
| | | | | | |||||
* | | | | | Code style improvements | Alfredo Sumaran | 2017-02-23 | 9 | -19/+47 |
| | | | | | |||||
* | | | | | Merge branch 'remove-require-context-filtered-search-bundle' into 'master' | Alfredo Sumaran | 2017-02-23 | 1 | -3/+9 |
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Remove require.context from filtered_search_bundle See merge request !9460 | ||||
| * | | | | | remove require.context from filtered_search_bundleremove-require-context-filtered-search-bundle | Mike Greiling | 2017-02-22 | 1 | -3/+9 |
| | | | | | | |||||
* | | | | | | Merge branch 'remove-require-context-graphs-bundle' into 'master' | Alfredo Sumaran | 2017-02-23 | 1 | -3/+4 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove require.context from graphs_bundle See merge request !9459 | ||||
| * | | | | | | remove require.context from graphs_bundleremove-require-context-graphs-bundle | Mike Greiling | 2017-02-22 | 1 | -3/+4 |
| |/ / / / / | |||||
* | | | | | | Merge branch 'remove-require-context-network-bundle' into 'master' | Alfredo Sumaran | 2017-02-23 | 1 | -3/+2 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove require.context from network_bundle See merge request !9458 | ||||
| * | | | | | | remove require.context from network_bundleremove-require-context-network-bundle | Mike Greiling | 2017-02-22 | 1 | -3/+2 |
| |/ / / / / | |||||
* | | | | | | Merge branch 'update-ci-skip-regex-to-accept-underscores-and-hyphens' into ↵ | Robert Speicher | 2017-02-22 | 1 | -1/+2 |
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'master' updated ci skip regex to accept underscores and hyphens See merge request !9130 | ||||
| * | | | | | updated ci skip regex to accept underscores and hyphensupdate-ci-skip-regex-to-accept-underscores-and-hyphens | Luke "Jared" Bennett | 2017-02-22 | 1 | -1/+2 |
| | | | | | | |||||
* | | | | | | Merge branch '22466-task-list-alignment' into 'master' | Annabel Dunstone Gray | 2017-02-22 | 3 | -11/+31 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Align Task List Checkboxes Closes #22466 See merge request !6487 | ||||
| * | | | | | | Position task list checkbox to match the list indent | Jared Deckard | 2017-02-10 | 3 | -11/+31 |
| | | | | | | | |||||
* | | | | | | | Merge branch 'add-issues-tooltip' into 'master' | Alfredo Sumaran | 2017-02-22 | 1 | -3/+39 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added tooltip to add issues button on issue boards Closes #27985 See merge request !9142 | ||||
| * | | | | | | | Added tooltip to add issues button on issue boards | Phil Hughes | 2017-02-21 | 1 | -3/+39 |
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | Closes #27985 | ||||
* | | | | | | | Merge branch 'newline-after-file-attachment-notes' into 'master' | Alfredo Sumaran | 2017-02-22 | 1 | -2/+3 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added double newline after file upload markdown insert Closes #28511 See merge request !9430 | ||||
| * | | | | | | | Added double newline after file upload markdown insert | Luke "Jared" Bennett | 2017-02-22 | 1 | -2/+3 |
| | |_|_|/ / / | |/| | | | | | |||||
* | | | | | | | Merge branch ↵ | Clement Ho | 2017-02-22 | 1 | -8/+8 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'gamesover/gitlab-ce-broken_iamge_when_doing_offline_update_check(help_page)' into 'master' Gamesover/gitlab ce broken iamge when doing offline update check(help page) See merge request !8539 | ||||
| * | | | | | | | added specs for version check imagegamesover/gitlab-ce-broken_iamge_when_doing_offline_update_check(help_page) | Luke "Jared" Bennett | 2017-02-22 | 1 | -8/+8 |
| | |_|_|/ / / | |/| | | | | | |||||
* | | | | | | | Merge branch 'remove-require-context-boards-bundle' into 'master' | Alfredo Sumaran | 2017-02-22 | 1 | -8/+12 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove require.context from boards_bundle See merge request !9392 |