Sha256: 7e1e1ee2a8155400b3979860f10cfe17e0686a507001de1d5fcc7ff6e1c1f6cd
Contents?: true
Size: 1.66 KB
Versions: 1
Compression:
Stored size: 1.66 KB
Contents
require 'ostruct' module RenderAnywhere class RenderingController < AbstractController::Base # Include all the concerns we need to make this work include AbstractController::Logger include AbstractController::Rendering include AbstractController::Layouts include AbstractController::Helpers include AbstractController::Translation include AbstractController::AssetPaths include ActionController::Caching # Define additional helpers, this one is for csrf_meta_tag helper_method :protect_against_forgery? # override the layout in your subclass if needed. layout 'application' # configure the different paths correctly def initialize(*args) super() self.class.send :include, Rails.application.routes.url_helpers # this is you normal rails application helper self.class.send :helper, ApplicationHelper lookup_context.view_paths = Rails.root.join('app', 'views') config.javascripts_dir = Rails.root.join('public', 'javascripts') config.stylesheets_dir = Rails.root.join('public', 'stylesheets') config.assets_dir = Rails.root.join('public') # same asset host as the controllers self.asset_host = ActionController::Base.asset_host end # we are not in a browser, no need for this def protect_against_forgery? false end # so that your flash calls still work def flash {} end # and nil request to differentiate between live and offline def request OpenStruct.new end # and params will be accessible def params {} end # so that your cookies calls still work def cookies {} end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
render_anywhere-0.0.6 | lib/render_anywhere/rendering_controller.rb |