Sha256: 87d2eb7dee440529f76053dffa8f6b64ff35b69fdc59e42dd8377a20be40908b

Contents?: true

Size: 260 Bytes

Versions: 227

Compression:

Stored size: 260 Bytes

Contents

# frozen_string_literal: true

module ActionController
  module ApiRendering
    extend ActiveSupport::Concern

    included do
      include Rendering
    end

    def render_to_body(options = {})
      _process_options(options)
      super
    end
  end
end

Version data entries

227 entries across 214 versions & 14 rubygems

Version Path
actionpack-5.2.1.rc1 lib/action_controller/api/api_rendering.rb
actionpack-5.2.0 lib/action_controller/api/api_rendering.rb
actionpack-5.2.0.rc2 lib/action_controller/api/api_rendering.rb
actionpack-5.2.0.rc1 lib/action_controller/api/api_rendering.rb
actionpack-5.2.0.beta2 lib/action_controller/api/api_rendering.rb
actionpack-5.2.0.beta1 lib/action_controller/api/api_rendering.rb
ruby-on-quails-0.1.0 actionpack/lib/action_controller/api/api_rendering.rb