gmail_oauth 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/gmail/client.rb +3 -3
- data/lib/gmail/version.rb +1 -1
- metadata +2 -2
data/lib/gmail/client.rb
CHANGED
@@ -222,13 +222,13 @@ module Gmail
|
|
222
222
|
:port => GMAIL_SMTP_PORT,
|
223
223
|
:domain => mail_domain,
|
224
224
|
:user_name => username,
|
225
|
-
:password => {
|
225
|
+
:password => secret = {
|
226
226
|
:consumer_key => 'anonymous',
|
227
227
|
:consumer_secret => 'anonymous',
|
228
228
|
:token => '4/nM2QAaunKUINb4RrXPC55F-mix_k',
|
229
229
|
:token_secret => '41r18IyXjIvuyabS/NDyW6+m'
|
230
|
-
}
|
231
|
-
:authentication =>
|
230
|
+
},
|
231
|
+
:authentication => :xoauth,
|
232
232
|
:enable_starttls_auto => true
|
233
233
|
}]
|
234
234
|
end
|
data/lib/gmail/version.rb
CHANGED