07 Apr, 2015

1 commit


31 Mar, 2015

2 commits


26 Mar, 2015

2 commits


16 Mar, 2015

1 commit


09 Mar, 2015

7 commits


07 Mar, 2015

1 commit


06 Mar, 2015

3 commits


05 Mar, 2015

1 commit


03 Mar, 2015

1 commit


02 Mar, 2015

1 commit


25 Feb, 2015

4 commits


24 Feb, 2015

2 commits


23 Feb, 2015

1 commit


22 Feb, 2015

4 commits


11 Feb, 2015

1 commit


10 Feb, 2015

7 commits


07 Feb, 2015

1 commit

  • Use ActionDispatch::Reloader.to_prepare instead of
    Rails.configuration.to_prepare. The latter runs the block only once and
    is not adequate for code that are reloaded upon files changes on each
    request. As extensions may touch on helpers and controllers, the former
    suits well.
    
    Besides, filters must be loaded after all plugins' extensions, as controllers
    and helpers needs the "final" code to execute properly.
    
    The production behaviour don't change as the code is not reloaded.
    Braulio Bhavamitra