Sha256: 4cecad6af61bb6bfcc3247d0150388654bb4129425b4214f6fa52434ba589e59
Contents?: true
Size: 1.86 KB
Versions: 1
Compression:
Stored size: 1.86 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 ActionView::Layouts if defined?(ActionView::Layouts) # Rails 4.1.x include AbstractController::Layouts if defined?(AbstractController::Layouts) # Rails 3.2.x, 4.0.x 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 = ApplicationController.view_paths config.javascripts_dir = Rails.root.join('public', 'javascripts') config.stylesheets_dir = Rails.root.join('public', 'stylesheets') config.assets_dir = Rails.root.join('public') config.cache_store = ActionController::Base.cache_store # 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.9 | lib/render_anywhere/rendering_controller.rb |