Sha256: a4b1b6e66cbed49f14e2820760383a776b09ec6ec0021b8348931427fe8ad1f6
Contents?: true
Size: 1011 Bytes
Versions: 20
Compression:
Stored size: 1011 Bytes
Contents
Dir[File.dirname(__FILE__) + '/lib/<%= plugin_name_underscored %>/easy_patch/**/*.rb'].each {|file| require_dependency file } # this block is executed once just after Redmine is started # means after all plugins are initialized # it is place for plain requires, not require_dependency # it should contain hooks, permissions - base class in Redmine is required thus is not reloaded ActiveSupport.on_load(:easyproject, yield: true) do require '<%= plugin_name_underscored %>/internals' require '<%= plugin_name_underscored %>/hooks' end # this block is called every time rails are reloading code # in development it means after each change in observed file # in production it means once just after server has started # in this block should be used require_dependency, but only if necessary. # better is to place a class in file named by rails naming convency and let it be loaded automatically # Here goes query registering, custom fields registering and so on ActionDispatch::Reloader.to_prepare do end
Version data entries
20 entries across 20 versions & 1 rubygems