Method: Praxis::PluginConcern::ClassMethods#setup!
- Defined in:
- lib/praxis/plugin_concern.rb
#setup! ⇒ Object
21 22 23 24 25 26 27 28 29 |
# File 'lib/praxis/plugin_concern.rb', line 21 def setup! return if @setup PLUGIN_CLASSES.each do |name| inject!(name) if constants.include?(name) end @setup = true end |