Module: Waves::Foundations::Default
- Defined in:
- lib/foundations/default.rb
Class Method Summary collapse
Class Method Details
.included(app) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/foundations/default.rb', line 6 def self.included( app ) app.instance_eval do include Waves::Layers::Simple include Waves::Layers::DefaultErrors include Waves::Layers::MVC include Waves::Layers::ORM::Sequel # Set autoloading from default.rb files #autoinit :Configurations do # autoload_class true #end end Waves << app end |