gitextract_7t_qp4dq/ ├── .gitignore ├── .jrubyrc ├── .travis.yml ├── .yardopts ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── bin/ │ └── premailer ├── lib/ │ ├── premailer/ │ │ ├── adapter/ │ │ │ ├── hpricot.rb │ │ │ ├── nokogiri.rb │ │ │ └── nokogumbo.rb │ │ ├── adapter.rb │ │ ├── executor.rb │ │ ├── html_to_plain_text.rb │ │ ├── premailer.rb │ │ └── version.rb │ └── premailer.rb ├── misc/ │ └── client_support.yaml ├── premailer.gemspec └── test/ ├── files/ │ ├── base.html │ ├── chars.html │ ├── html4.html │ ├── html_with_uri.html │ ├── ignore.css │ ├── ignore.html │ ├── import.css │ ├── iso-8859-2.html │ ├── iso-8859-5.html │ ├── no_css.html │ ├── noimport.css │ ├── styles.css │ └── xhtml.html ├── future_tests.rb ├── helper.rb ├── test_adapter.rb ├── test_html_to_plain_text.rb ├── test_links.rb ├── test_misc.rb ├── test_premailer.rb └── test_warnings.rb