== 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.