gitextract_qyvd4b8y/ ├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── contacts.gemspec ├── cruise_config.rb ├── examples/ │ └── grab_contacts.rb ├── geminstaller.yml ├── lib/ │ ├── contacts/ │ │ ├── aol.rb │ │ ├── base.rb │ │ ├── gmail.rb │ │ ├── hotmail.rb │ │ ├── json_picker.rb │ │ ├── mailru.rb │ │ ├── plaxo.rb │ │ └── yahoo.rb │ └── contacts.rb └── test/ ├── example_accounts.yml ├── test_helper.rb ├── test_suite.rb └── unit/ ├── aol_contact_importer_test.rb ├── gmail_contact_importer_test.rb ├── hotmail_contact_importer_test.rb ├── mailru_contact_importer_test.rb ├── test_accounts_test.rb └── yahoo_csv_contact_importer_test.rb