Skip to content

Instantly share code, notes, and snippets.

@nu7hatch
Created October 25, 2010 22:17
Show Gist options
  • Save nu7hatch/645906 to your computer and use it in GitHub Desktop.
Save nu7hatch/645906 to your computer and use it in GitHub Desktop.
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