Created
December 31, 2012 13:00
-
-
Save pauldatta/4419597 to your computer and use it in GitHub Desktop.
Using Rabl with Grape Trying to get view helpers to work within Rabl templates that are called from Grape.
@pauldatta
This file contains 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
# https://github.com/drapergem/draper/wiki/Using-Rails-Path-Helpers-in-Draper-Decorators-with-Grape | |
# https://github.com/nesquena/rabl/wiki/Using-Rabl-with-Grape | |
module Grape | |
class Endpoint | |
include Rails.application.routes.url_helpers | |
default_url_options[:host] = ::Rails.application.routes.default_url_options[:host] | |
end | |
end | |
module Rabl | |
class Engine | |
# Access Application Helpers | |
include ActionView::Helpers::ApplicationHelper | |
include Rails.application.routes.url_helpers | |
default_url_options[:host] = ::Rails.application.routes.default_url_options[:host] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment