gitextract_m1xfdr8k/ ├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── lib/ │ ├── omnicontacts/ │ │ ├── authorization/ │ │ │ ├── oauth1.rb │ │ │ └── oauth2.rb │ │ ├── builder.rb │ │ ├── http_utils.rb │ │ ├── importer/ │ │ │ ├── facebook.rb │ │ │ ├── gmail.rb │ │ │ ├── hotmail.rb │ │ │ ├── linkedin.rb │ │ │ ├── outlook.rb │ │ │ └── yahoo.rb │ │ ├── importer.rb │ │ ├── integration_test.rb │ │ ├── middleware/ │ │ │ ├── base_oauth.rb │ │ │ ├── oauth1.rb │ │ │ └── oauth2.rb │ │ └── parse_utils.rb │ └── omnicontacts.rb ├── omnicontacts.gemspec └── spec/ ├── omnicontacts/ │ ├── authorization/ │ │ ├── oauth1_spec.rb │ │ └── oauth2_spec.rb │ ├── http_utils_spec.rb │ ├── importer/ │ │ ├── facebook_spec.rb │ │ ├── gmail_spec.rb │ │ ├── hotmail_spec.rb │ │ ├── linkedin_spec.rb │ │ ├── outlook_spec.rb │ │ └── yahoo_spec.rb │ ├── integration_test_spec.rb │ ├── middleware/ │ │ ├── base_oauth_spec.rb │ │ ├── oauth1_spec.rb │ │ └── oauth2_spec.rb │ └── parse_utils_spec.rb └── spec_helper.rb