1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #29289 from vergenzt/patch-1

Add note to Railtie docs to use unique filenames
This commit is contained in:
Vipul A M 2017-06-12 20:07:23 +05:30 committed by GitHub
commit 42a8072193

View file

@ -103,6 +103,9 @@ module Rails
# end
# end
#
# Since filenames on the load path are shared across gems, be sure that files you load
# through a railtie have unique names.
#
# == Application and Engine
#
# An engine is nothing more than a railtie with some initializers already set. And since