An error occurred fetching the project authors.
- 22 Aug, 2019 1 commit
-
-
Thong Kuah authored
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
-
- 22 Dec, 2018 1 commit
-
-
Jacopo authored
Override now cares about parents method arity: if parents arity doesn't match raises an error.
-
- 05 Jun, 2018 1 commit
-
-
Lin Jen-Shin authored
Since extending a class means including on the singleton class of the class, this should now complain this: ``` ruby module M extend Gitlab::Utils::Override override :f def f super.succ end end class C extend M def self.f 0 end end ``` It should complain because `C.f` wasn't calling `M#f`. This should pass verification: ``` ruby module M extend Gitlab::Utils::Override override :f def f super.succ end end class B def self.f 0 end end class C < B extend M end ``` Because `C.f` would now call `M#f`, and `M#f` does override something.
-
- 26 Dec, 2017 1 commit
-
-
Lin Jen-Shin authored
-