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 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 => 'xoauth',
230
+ },
231
+ :authentication => :xoauth,
232
232
  :enable_starttls_auto => true
233
233
  }]
234
234
  end
data/lib/gmail/version.rb CHANGED
@@ -2,7 +2,7 @@ module Gmail
2
2
  class Version #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- PATCH = 1
5
+ PATCH = 2
6
6
  STRING = [MAJOR, MINOR, PATCH].join('.')
7
7
  end # Version
8
8
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 1
9
- version: 0.1.1
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - BehindLogic