11 lines
186 B
Ruby
11 lines
186 B
Ruby
|
module RosaPresenter
|
||
|
extend ActiveSupport::Autoload
|
||
|
|
||
|
autoload :Activation
|
||
|
autoload :Base
|
||
|
|
||
|
VERSION = "0.0.1"
|
||
|
end
|
||
|
|
||
|
ActionController::Base.send(:include, RosaPresenter::Activation)
|