The solutions I've searched online do not work. I currently have rails 3.1 and haml installed. The ie.css file is located under app/assets/stylesheets right next to the application.css.
I tried the following but it doesn't work:
%html
%head
= stylesheet_link_tag 'application', :media => 'all'
<!–[if (IE)]><!–>
<link href=”ie.css” media=”screen” rel=”stylesheet” type=”text/css” />
<!–<![endif]–>
application.rb:
config.assets.precompile += %w(ie.css)
application.css:
*= require_self
*= require_tree .
