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
2019-09-02Provide filename and line number for `class_eval`Peter Leitzen
This commit removes one RuboCop offense from its todo file.
2019-07-25Enable Rubocop Performance/ReverseEachStan Hu
`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)
2019-07-24Enable Rubocop Performance/InefficientHashSearchStan Hu
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
2019-07-04Remove now unused KubernetesService methodsJames Fargher
Now that KubernetesService can no longer be a DeploymentPlatform we can remove all kubernetes client code and KubernetesService edge cases.
2019-06-18Make KubernetesService readonlyJames Fargher
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.
2019-05-05Update .rubocop_todo.ymlStan Hu
2019-05-05Regenerate Rubocop rulesStan Hu
2019-05-05Upgrade to Rubocop 0.68.1Stan Hu
This adds Ruby 2.6 support.
2019-04-10Revert "Remove HipChat integration from GitLab"Sean McGivern
This reverts commit a5378665a1dc0b9c8dc3a4fa279a0eb78aac5aac.
2019-02-08Remove HipChat integration from GitLabNick Thomas
2019-02-01Fix ReturnInVoidContext rubocop offenseSemyon Pupkov
2019-01-29Re-enable MethodCallWithoutArgsParentheses CopAndrew Newdigate
Re-enables and autocorrects all instances of the Style/MethodCallWithoutArgsParentheses rule
2019-01-24Enable the Layout/ExtraSpacing copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-16chore(rubocop): fix Style/TrivialAccessors issuesSemyon Pupkov
2018-12-17Merge branch 'fix-rspec-offcense' into 'master'Rémy Coutable
Fix RSpec/HookArgument rubocop offense See merge request gitlab-org/gitlab-ce!23776
2018-12-11Fix RSpec/HookArgument rubocop offenseSemyon Pupkov
2018-12-09Fix ConstantName rubocop offenseSemyon Pupkov
2018-10-04Merge branch 'fix-todo-cops' into 'master'Rémy Coutable
Fix todo cops See merge request gitlab-org/gitlab-ce!21850
2018-10-02Remove Gitlab::Git::Repository#rugged and Gollum codeAlejandro Rodríguez
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.
2018-09-21Fix UriDefaultParser copSemyon Pupkov
2018-09-21Fix UnneededRequireStatement copSemyon Pupkov
2018-09-21Remove unused cops from todoSemyon Pupkov
2018-09-21Fix DynamicAttributeDefinedStatically copSemyon Pupkov
2018-09-20Fix SpaceInsidePercentLiteralDelimiters copSemyon Pupkov
2018-09-20Fix SpaceInsideArrayLiteralBrackets copSemyon Pupkov
2018-09-20Fix SpaceBeforeFirstArg copSemyon Pupkov
2018-09-18Fix rubocop Style/ZeroLengthPredicateSemyon Pupkov
2018-08-10Explicitly disable the Style/SafeNavigation copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-07-09Update rubocop to get rid of a warning in other MRLin Jen-Shin
2018-07-05Enable Capybara/FeatureMethods copWinnie Hellmann
2018-06-14Move the trigger-build script into one location to serve both omnibus and ↵Marin Jankovski
cloud-native triggers.
2018-05-30Removed API endpoint and specsFrancisco Javier López
2018-04-23Move spec helpers/matchers/shared examples/contexts to their relevant folderRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-02-28Moved o_auth/saml/ldap modules under gitlab/authHoratiu Eugen Vlad
2018-01-31Enable RuboCop Style/RegexpLiteralTakuya Noguchi
2018-01-25Update gitlab-styles and re-enable the RSpec/SingleLineHook cop againRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-01-18Update rubocop, rubocop-rspec, and gitlab-stylesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-12-22Use gitlab-stylesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-08-29exclude spec/ and features/ from `Style/PredicateName` copMaxim Rydkin
2017-08-29add changelogMaxim Rydkin
2017-08-29replace `is_member_of` with `member_of?`Maxim Rydkin
2017-08-29replace `has_matching_label` with `has_matching_label?`Maxim Rydkin
2017-08-29replace `is_edited?` with `edited?`Maxim Rydkin
2017-08-15Enable Layout/TrailingWhitespace cop and auto-correct offensesRobert Speicher
2017-08-11Enable the RSpec/HookArgument cop and auto-correct offensesRobert Speicher
2017-08-09Enable the Layout/SpaceBeforeBlockBraces copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-08-01Bump rubocop to 0.49.1 and rubocop-rspec to 1.15.1Takuya Noguchi
2017-06-30Disable RSpec/BeforeAfterAll and enable RSpec/ImplicitExpect copsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-02Enable the Style/PreferredHashMethods copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>