Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-03-27 | 1 | -7/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-02-06 | 1 | -126/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-01-27 | 1 | -123/+1 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-01-27 | 1 | -0/+126 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-01-23 | 1 | -43/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-01-20 | 1 | -122/+104 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2019-12-19 | 1 | -5/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2019-11-17 | 1 | -7/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2019-10-18 | 1 | -5/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2019-09-26 | 1 | -13/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2019-09-17 | 1 | -5/+0 |
| | |||||
* | Rename API::Internal class to API::Internal::Base61927-internal-api-namespace | Krasimir Angelov | 2019-09-04 | 1 | -1/+1 |
| | | | | | | so that we can use API::Internal namespace. Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/61927. | ||||
* | Provide filename and line number for `class_eval` | Peter Leitzen | 2019-09-02 | 1 | -5/+0 |
| | | | | This commit removes one RuboCop offense from its todo file. | ||||
* | Enable Rubocop Performance/ReverseEachsh-rubocop-reverse-each | Stan Hu | 2019-07-24 | 1 | -8/+0 |
| | | | | | | | `Array.reverse_each` is faster than `Array.reverse.each` because: * reverse.each creates a new array then loops each element * reverse_each loops in reverse order (no intermediate array created) | ||||
* | Enable Rubocop Performance/InefficientHashSearchsh-enable-rubocop-hash-search | Stan Hu | 2019-07-24 | 1 | -11/+0 |
| | | | | | | | | | When used with a Hash, `.keys.include?` is bad because: 1. It performs a O(n) search instead of the efficient `.has_key?` 2. It clones all keys into separate array. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64975 | ||||
* | Remove now unused KubernetesService methodsremove_unused_k8s_service_methods | James Fargher | 2019-07-05 | 1 | -3/+0 |
| | | | | | Now that KubernetesService can no longer be a DeploymentPlatform we can remove all kubernetes client code and KubernetesService edge cases. | ||||
* | Make KubernetesService readonly | James Fargher | 2019-06-18 | 1 | -1/+0 |
| | | | | | | | | We are deprecating this service in favor of instance wide clusters. Therefore we removed some code that is not anymore needed for a readonly cluster and also we added some flags to allow for this deprecation. These flags are to be removed in the next release when we finally completelly remove KubernetesService. | ||||
* | Update .rubocop_todo.yml | Stan Hu | 2019-05-05 | 1 | -21/+20 |
| | |||||
* | Regenerate Rubocop rules | Stan Hu | 2019-05-05 | 1 | -122/+4 |
| | |||||
* | Upgrade to Rubocop 0.68.1 | Stan Hu | 2019-05-05 | 1 | -148/+484 |
| | | | | This adds Ruby 2.6 support. | ||||
* | Revert "Remove HipChat integration from GitLab" | Sean McGivern | 2019-04-10 | 1 | -0/+1 |
| | | | | This reverts commit a5378665a1dc0b9c8dc3a4fa279a0eb78aac5aac. | ||||
* | Remove HipChat integration from GitLab | Nick Thomas | 2019-02-08 | 1 | -1/+0 |
| | |||||
* | Fix ReturnInVoidContext rubocop offense | Semyon Pupkov | 2019-02-01 | 1 | -5/+0 |
| | |||||
* | Re-enable MethodCallWithoutArgsParentheses Cop | Andrew Newdigate | 2019-01-29 | 1 | -5/+0 |
| | | | | | Re-enables and autocorrects all instances of the Style/MethodCallWithoutArgsParentheses rule | ||||
* | Enable the Layout/ExtraSpacing cop56392-enable-the-layout-extraspacing-cop | Rémy Coutable | 2019-01-24 | 1 | -6/+0 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | chore(rubocop): fix Style/TrivialAccessors issues | Semyon Pupkov | 2019-01-16 | 1 | -11/+0 |
| | |||||
* | Merge branch 'fix-rspec-offcense' into 'master' | Rémy Coutable | 2018-12-17 | 1 | -11/+0 |
|\ | | | | | | | | | Fix RSpec/HookArgument rubocop offense See merge request gitlab-org/gitlab-ce!23776 | ||||
| * | Fix RSpec/HookArgument rubocop offense | Semyon Pupkov | 2018-12-11 | 1 | -11/+0 |
| | | |||||
* | | Fix ConstantName rubocop offense | Semyon Pupkov | 2018-12-09 | 1 | -6/+0 |
|/ | |||||
* | Merge branch 'fix-todo-cops' into 'master' | Rémy Coutable | 2018-10-04 | 1 | -79/+0 |
|\ | | | | | | | | | Fix todo cops See merge request gitlab-org/gitlab-ce!21850 | ||||
| * | Fix UriDefaultParser cop | Semyon Pupkov | 2018-09-21 | 1 | -5/+0 |
| | | |||||
| * | Fix UnneededRequireStatement cop | Semyon Pupkov | 2018-09-21 | 1 | -8/+0 |
| | | |||||
| * | Remove unused cops from todo | Semyon Pupkov | 2018-09-21 | 1 | -17/+0 |
| | | |||||
| * | Fix DynamicAttributeDefinedStatically cop | Semyon Pupkov | 2018-09-21 | 1 | -18/+0 |
| | | |||||
| * | Fix SpaceInsidePercentLiteralDelimiters cop | Semyon Pupkov | 2018-09-20 | 1 | -8/+0 |
| | | |||||
| * | Fix SpaceInsideArrayLiteralBrackets cop | Semyon Pupkov | 2018-09-20 | 1 | -9/+0 |
| | | |||||
| * | Fix SpaceBeforeFirstArg cop | Semyon Pupkov | 2018-09-20 | 1 | -14/+0 |
| | | |||||
* | | Remove Gitlab::Git::Repository#rugged and Gollum code | Alejandro Rodríguez | 2018-10-02 | 1 | -1/+0 |
|/ | | | | | | | | Cleanup code, and refactor tests that still use Rugged. After this, there should be no Rugged code that access the instance's repositories on non-test environments. There is still some rugged code for other tasks like the repository import task, but since it doesn't access any repository storage path it can stay. | ||||
* | Fix rubocop Style/ZeroLengthPredicate | Semyon Pupkov | 2018-09-18 | 1 | -14/+0 |
| | |||||
* | Explicitly disable the Style/SafeNavigation cop | Rémy Coutable | 2018-08-10 | 1 | -6/+0 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Update rubocop to get rid of a warning in other MR | Lin Jen-Shin | 2018-07-09 | 1 | -6/+0 |
| | |||||
* | Enable Capybara/FeatureMethods cop | Winnie Hellmann | 2018-07-05 | 1 | -4/+0 |
| | |||||
* | Move the trigger-build script into one location to serve both omnibus and ↵refactor-trigger-build-script | Marin Jankovski | 2018-06-14 | 1 | -1/+1 |
| | | | | cloud-native triggers. | ||||
* | Removed API endpoint and specsfj-36819-remove-v3-api | Francisco Javier López | 2018-05-30 | 1 | -5/+0 |
| | |||||
* | Move spec helpers/matchers/shared examples/contexts to their relevant folder | Rémy Coutable | 2018-04-23 | 1 | -4/+4 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Moved o_auth/saml/ldap modules under gitlab/auth | Horatiu Eugen Vlad | 2018-02-28 | 1 | -3/+3 |
| | |||||
* | Enable RuboCop Style/RegexpLiteral | Takuya Noguchi | 2018-02-01 | 1 | -1/+3 |
| | |||||
* | Update gitlab-styles and re-enable the RSpec/SingleLineHook cop again42385-enable-the-rspec-singlelinehook-cop | Rémy Coutable | 2018-01-25 | 1 | -4/+0 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Update rubocop, rubocop-rspec, and gitlab-styles42187-update-gitlab-styles-to-2-3-0 | Rémy Coutable | 2018-01-18 | 1 | -73/+62 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> | ||||
* | Use gitlab-styles | Rémy Coutable | 2017-12-22 | 1 | -98/+616 |
| | | | | Signed-off-by: Rémy Coutable <remy@rymai.me> |