Method: Aqua.include_engine
- Defined in:
- lib/aqua.rb
.include_engine(str) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Loads an external engine from a hash of options.
90 91 92 93 94 |
# File 'lib/aqua.rb', line 90 def self.include_engine( str ) Aqua::Storage.class_eval do include str.constantize end end |