├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.markdown ├── Rakefile ├── gmail_xoauth.gemspec ├── lib ├── gmail_xoauth.rb └── gmail_xoauth │ ├── imap_xoauth2_authenticator.rb │ ├── imap_xoauth_authenticator.rb │ ├── oauth_string.rb │ ├── smtp_xoauth2_authenticator.rb │ ├── smtp_xoauth_authenticator.rb │ └── version.rb └── test ├── helper.rb ├── test_imap_xoauth2_authenticator.rb ├── test_imap_xoauth_authenticator.rb ├── test_oauth_string.rb ├── test_smtp_xoauth2_authenticator.rb └── test_smtp_xoauth_authenticator.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/Rakefile -------------------------------------------------------------------------------- /gmail_xoauth.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/gmail_xoauth.gemspec -------------------------------------------------------------------------------- /lib/gmail_xoauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/lib/gmail_xoauth.rb -------------------------------------------------------------------------------- /lib/gmail_xoauth/imap_xoauth2_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/lib/gmail_xoauth/imap_xoauth2_authenticator.rb -------------------------------------------------------------------------------- /lib/gmail_xoauth/imap_xoauth_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/lib/gmail_xoauth/imap_xoauth_authenticator.rb -------------------------------------------------------------------------------- /lib/gmail_xoauth/oauth_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/lib/gmail_xoauth/oauth_string.rb -------------------------------------------------------------------------------- /lib/gmail_xoauth/smtp_xoauth2_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/lib/gmail_xoauth/smtp_xoauth2_authenticator.rb -------------------------------------------------------------------------------- /lib/gmail_xoauth/smtp_xoauth_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/lib/gmail_xoauth/smtp_xoauth_authenticator.rb -------------------------------------------------------------------------------- /lib/gmail_xoauth/version.rb: -------------------------------------------------------------------------------- 1 | module GmailXoauth 2 | VERSION = "0.4.3" 3 | end 4 | -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_imap_xoauth2_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/test/test_imap_xoauth2_authenticator.rb -------------------------------------------------------------------------------- /test/test_imap_xoauth_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/test/test_imap_xoauth_authenticator.rb -------------------------------------------------------------------------------- /test/test_oauth_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/test/test_oauth_string.rb -------------------------------------------------------------------------------- /test/test_smtp_xoauth2_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/test/test_smtp_xoauth2_authenticator.rb -------------------------------------------------------------------------------- /test/test_smtp_xoauth_authenticator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfo/gmail_xoauth/HEAD/test/test_smtp_xoauth_authenticator.rb --------------------------------------------------------------------------------