Sha256: 0a6e7476a0bd21a6f00695c055d6602d9e85faa264c2f7edec4b26d913dbf3fc

Contents?: true

Size: 820 Bytes

Versions: 1

Compression:

Stored size: 820 Bytes

Contents

== IE Filter on Rack

Use rack to filter out unsupported IE versions.  
Use the default template, a custom template or redirect users to another location.

Because dealing with IE should be easy.
Because you can support what you want (if you're lucky).

=== How?

 # Default Options, IE < 7 & Default Template
 use Rack::NoIE

 use Rack::NoIE, {
  :version => 7, # IE < 8
  :template => '/full/path/to/your/template.html'
 }

=== Why?

1. IE 6 was released in 2001.
2. Developing for IE 6 costs extra time + money.
3. Because they're releasing the alpha version of IE 9 next year.

=== Release Years
===

* IE 9 ~ 2010
* IE 8 = 2009
* IE 7 = 2006
* IE 6 = 2001 <= Should be unsupported
* IE 5 = 1999 <= Should be unsupported

== Copyright

Copyright (c) 2009 Brad Whitcomb, Digitalstar Studios. See LICENSE for details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rack-denyie-0.1.0 README.rdoc