Remove lib folder from autoload path

- Load extensions explicitly
This commit is contained in:
Artur Beljajev 2018-06-05 17:26:14 +03:00
parent 9ea5b54f5c
commit 30ac973f96
12 changed files with 25 additions and 25 deletions

5
lib/core_ext/array.rb Normal file
View file

@ -0,0 +1,5 @@
class Array
def include_any? *args
(self & args).any?
end
end