Sha256: 65e5161f98ae900f65edde4a38ea11c2d71c3f38435d2db913f4c62f38341f6b

Contents?: true

Size: 1.18 KB

Versions: 9

Compression:

Stored size: 1.18 KB

Contents

# Rack 1.0 does not allow string subclass body. This does not play well with our ActionView::SafeBuffer.
# The next release of Rack will be allowing string subclass body - http://github.com/rack/rack/commit/de668df02802a0335376a81ba709270e43ba9d55
# TODO : Remove this monkey patch after the next release of Rack

module RackLintPatch
  module AllowStringSubclass
    def self.included(base)
      base.send :alias_method, :each, :each_with_hack
    end

    def each_with_hack
      @closed = false

      @body.each { |part|
        assert("Body yielded non-string value #{part.inspect}") {
          part.kind_of?(String)
        }
        yield part
      }

      if @body.respond_to?(:to_path)
        assert("The file identified by body.to_path does not exist") {
          ::File.exist? @body.to_path
        }
      end
    end
  end

  begin
    app = proc {|env| [200, {"Content-Type" => "text/plain", "Content-Length" => "12"}, [Class.new(String).new("Hello World!")]] }
    response = Rack::MockRequest.new(Rack::Lint.new(app)).get('/')
  rescue Rack::Lint::LintError => e
    raise(e) unless e.message =~ /Body yielded non-string value/
    Rack::Lint.send :include, AllowStringSubclass
  end
end

Version data entries

9 entries across 9 versions & 4 rubygems

Version Path
actionpack_csi-2.3.5.p8 lib/action_controller/rack_lint_patch.rb
actionpack_csi-2.3.5.p7 lib/action_controller/rack_lint_patch.rb
actionpack_csi-2.3.5.p6 lib/action_controller/rack_lint_patch.rb
webroar-0.5.0 src/admin_panel/vendor/rails/actionpack/lib/action_controller/rack_lint_patch.rb
webroar-0.4.0 src/admin_panel/vendor/rails/actionpack/lib/action_controller/rack_lint_patch.rb
radiant-0.9.0.rc2 vendor/rails/actionpack/lib/action_controller/rack_lint_patch.rb
webroar-0.3.1 src/admin_panel/vendor/rails/actionpack/lib/action_controller/rack_lint_patch.rb
webroar-0.3.0 src/admin_panel/vendor/rails/actionpack/lib/action_controller/rack_lint_patch.rb
actionpack-2.3.5 lib/action_controller/rack_lint_patch.rb