Initial release of Discourse

This commit is contained in:
Robin Ward
2013-02-05 14:16:51 -05:00
commit 21b5628528
2932 changed files with 143949 additions and 0 deletions

31
lib/custom_renderer.rb Normal file
View File

@@ -0,0 +1,31 @@
class CustomRenderer < AbstractController::Base
include ActiveSupport::Configurable
include AbstractController::Rendering
include AbstractController::Helpers
include AbstractController::Translation
include AbstractController::AssetPaths
include Rails.application.routes.url_helpers
helper ApplicationHelper
self.view_paths = "app/views"
include CurrentUser
def action_name
""
end
def controller_name
""
end
def cookies
@parent.send(:cookies)
end
def session
@parent.send(:session)
end
def initialize(parent)
@parent = parent
end
end