Skip to content

Latest commit

 

History

History
40 lines (20 loc) · 778 Bytes

README.md

File metadata and controls

40 lines (20 loc) · 778 Bytes

RackTidyFFI

Rack middleware to tidy application output

  • Works with ruby 1.9
  • uses tidy_ffi instead of tidy (broken on 1.9 because of Ruby DL changes)

Installation

gem install rack-tidy-ffi

Usage

in your config.ru:

require 'rack-tidy-ffi'

use RackTidyFFI

add this to your Gemfile if you are using bundler:

gem "rack-tidy-ffi", ">= 0.2.1", require: "rack-tidy-ffi"

if you are using rails you can add this in your config/application.rb if you want to use the gem as a middleware:

config.middleware.use RackTidyFFI

Changelog

  • 0.2.1 added Rails support
  • 0.2 added gem dependency

Usage Example: