Sha256: 0372ea34391cc12b622708a3becf362c7f88a3530b42a79a251a263da6940543

Contents?: true

Size: 862 Bytes

Versions: 11

Compression:

Stored size: 862 Bytes

Contents

module Goliath
  module Rack
    module Formatters
      # A plist formatter. Pass in to_plist options as an option to the middleware
      #
      # @example
      #   use Goliath::Rack::Formatters::PLIST, :convert_unknown_to_string => true
      class PLIST
        include AsyncMiddleware

        def initialize(app, opts = {})
          unless Hash.new.respond_to? :to_plist
            fail "Please require a plist library that adds a to_plist method"
          end
          @app = app
          @opts = opts
        end

        def post_process(env, status, headers, body)
          if plist_response?(headers)
            body = [body.to_plist(@opts)]
          end
          [status, headers, body]
        end

        def plist_response?(headers)
          headers['Content-Type'] =~ %r{^application/x-plist}
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
goliath-1.0.7 lib/goliath/rack/formatters/plist.rb
goliath-1.0.6 lib/goliath/rack/formatters/plist.rb
goliath-1.0.5 lib/goliath/rack/formatters/plist.rb
goliath-1.0.4 lib/goliath/rack/formatters/plist.rb
goliath-1.0.3 lib/goliath/rack/formatters/plist.rb
goliath-1.0.2 lib/goliath/rack/formatters/plist.rb
goliath-1.0.1 lib/goliath/rack/formatters/plist.rb
goliath-1.0.0 lib/goliath/rack/formatters/plist.rb
goliath-1.0.0.beta.1 lib/goliath/rack/formatters/plist.rb
goliath-0.9.4 lib/goliath/rack/formatters/plist.rb
goliath-0.9.2 lib/goliath/rack/formatters/plist.rb