Added class reload support, expecting rack layer.
This commit is contained in:
parent
28446b0400
commit
65078e85fe
1 changed files with 6 additions and 0 deletions
6
config/initializers/vendor_lib.rb
Normal file
6
config/initializers/vendor_lib.rb
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# load all vendor/lib extentions
|
||||||
|
Dir["#{Rails.root}/vendor/lib/*"].each {|file|
|
||||||
|
if File.file?(file)
|
||||||
|
require file
|
||||||
|
end
|
||||||
|
}
|
Loading…
Reference in a new issue