2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2019-07-31 08:23:48 +00:00
|
|
|
# load all core_ext extensions
|
2021-07-16 13:38:01 +00:00
|
|
|
Dir.glob(Rails.root.join('lib/core_ext/**/*')).sort.each do |file|
|
2013-09-20 06:29:09 +00:00
|
|
|
if File.file?(file)
|
|
|
|
require file
|
|
|
|
end
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|