Rails.application.config vs Rails.configuration

Is there any difference between using Rails.application.config vs Rails.configuration when doing custom configuration ?

+5
source share
1 answer

Apart from the number of characters, there is no difference between the two methods. They both point to the same configuration object:

+6
source

All Articles