Created
October 25, 2010 22:17
-
-
Save nu7hatch/645906 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Padrino::Foundation::Simple | |
# ... some core things | |
end | |
module Padrino::Foundation::Complex | |
self.registered(app) | |
app.register Padrino::Rendering | |
app.register Padrino::Routing | |
app.register Padrino::Helpers | |
# ... | |
end | |
end | |
class ComplexApp < Padrino::Application | |
register Padrino::Foundation::Complex | |
end | |
class SimpleApp < Padrino::Application | |
register Padrino::Foundation::Simple | |
end | |
# or maybe smth freaky... | |
class AnotherComplexApp < Padrino::Application | |
foundation :complex | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment