├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── features ├── extension.feature └── support │ └── env.rb ├── fixtures └── test-app │ ├── config.rb │ └── source │ ├── index.html │ ├── with_body.html │ ├── with_complex_url_params.html │ ├── with_multiple_emails.html │ ├── with_no_email.html │ └── with_url_params.html ├── lib ├── middleman-protect-emails.rb └── middleman-protect-emails │ ├── extension.rb │ ├── rot13_script.html │ └── version.rb └── middleman-protect-emails.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/Rakefile -------------------------------------------------------------------------------- /features/extension.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/features/extension.feature -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /fixtures/test-app/config.rb: -------------------------------------------------------------------------------- 1 | activate :protect_emails 2 | -------------------------------------------------------------------------------- /fixtures/test-app/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/fixtures/test-app/source/index.html -------------------------------------------------------------------------------- /fixtures/test-app/source/with_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/fixtures/test-app/source/with_body.html -------------------------------------------------------------------------------- /fixtures/test-app/source/with_complex_url_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/fixtures/test-app/source/with_complex_url_params.html -------------------------------------------------------------------------------- /fixtures/test-app/source/with_multiple_emails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/fixtures/test-app/source/with_multiple_emails.html -------------------------------------------------------------------------------- /fixtures/test-app/source/with_no_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/fixtures/test-app/source/with_no_email.html -------------------------------------------------------------------------------- /fixtures/test-app/source/with_url_params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/fixtures/test-app/source/with_url_params.html -------------------------------------------------------------------------------- /lib/middleman-protect-emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/lib/middleman-protect-emails.rb -------------------------------------------------------------------------------- /lib/middleman-protect-emails/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/lib/middleman-protect-emails/extension.rb -------------------------------------------------------------------------------- /lib/middleman-protect-emails/rot13_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/lib/middleman-protect-emails/rot13_script.html -------------------------------------------------------------------------------- /lib/middleman-protect-emails/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/lib/middleman-protect-emails/version.rb -------------------------------------------------------------------------------- /middleman-protect-emails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amsardesai/middleman-protect-emails/HEAD/middleman-protect-emails.gemspec --------------------------------------------------------------------------------