Sha256: 5f59f6ae2946549f8f9beeff80cf5428f492288228a191028fe3a0a252376ce4
Contents?: true
Size: 344 Bytes
Versions: 21
Compression:
Stored size: 344 Bytes
Contents
module QuoVadis class Engine < ::Rails::Engine initializer 'quo_vadis.model' do |app| ActiveSupport.on_load(:active_record) do include ModelMixin end end initializer 'quo_vadis.controller' do |app| ActiveSupport.on_load(:action_controller) do include ControllerMixin end end end end
Version data entries
21 entries across 21 versions & 1 rubygems