├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── LICENSE.MIT ├── README.md ├── Rakefile ├── em-imap.gemspec ├── lib ├── em-imap.rb ├── em-imap │ ├── authenticators.rb │ ├── client.rb │ ├── command_sender.rb │ ├── connection.rb │ ├── continuation_synchronisation.rb │ ├── deferrable_ssl.rb │ ├── formatter.rb │ ├── listener.rb │ ├── response_parser.rb │ └── ssl_verifier.rb └── net │ └── imap.rb └── spec ├── authenticators_spec.rb ├── client_spec.rb ├── command_sender_spec.rb ├── continuation_synchronisation_spec.rb ├── formatter_spec.rb ├── listener_spec.rb ├── response_parser_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .rvmrc 3 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/.rspec -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/Rakefile -------------------------------------------------------------------------------- /em-imap.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/em-imap.gemspec -------------------------------------------------------------------------------- /lib/em-imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap.rb -------------------------------------------------------------------------------- /lib/em-imap/authenticators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/authenticators.rb -------------------------------------------------------------------------------- /lib/em-imap/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/client.rb -------------------------------------------------------------------------------- /lib/em-imap/command_sender.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/command_sender.rb -------------------------------------------------------------------------------- /lib/em-imap/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/connection.rb -------------------------------------------------------------------------------- /lib/em-imap/continuation_synchronisation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/continuation_synchronisation.rb -------------------------------------------------------------------------------- /lib/em-imap/deferrable_ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/deferrable_ssl.rb -------------------------------------------------------------------------------- /lib/em-imap/formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/formatter.rb -------------------------------------------------------------------------------- /lib/em-imap/listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/listener.rb -------------------------------------------------------------------------------- /lib/em-imap/response_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/response_parser.rb -------------------------------------------------------------------------------- /lib/em-imap/ssl_verifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/em-imap/ssl_verifier.rb -------------------------------------------------------------------------------- /lib/net/imap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/lib/net/imap.rb -------------------------------------------------------------------------------- /spec/authenticators_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/spec/authenticators_spec.rb -------------------------------------------------------------------------------- /spec/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/spec/client_spec.rb -------------------------------------------------------------------------------- /spec/command_sender_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/spec/command_sender_spec.rb -------------------------------------------------------------------------------- /spec/continuation_synchronisation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/spec/continuation_synchronisation_spec.rb -------------------------------------------------------------------------------- /spec/formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/spec/formatter_spec.rb -------------------------------------------------------------------------------- /spec/listener_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/spec/listener_spec.rb -------------------------------------------------------------------------------- /spec/response_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/spec/response_parser_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConradIrwin/em-imap/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------