mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
6 lines
135 B
Ruby
6 lines
135 B
Ruby
# load all core_ext extentions
|
|
Dir.glob("#{Rails.root}/lib/core_ext/**/*").each {|file|
|
|
if File.file?(file)
|
|
require file
|
|
end
|
|
}
|