gmail 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b9004bac96504f2376823a5eb1e5a713ab95679f
4
- data.tar.gz: 83048df9735f6f3a53307b1e3e84601fc3989630
2
+ SHA256:
3
+ metadata.gz: a3473e2fd3c3f62548b0c0d77741e5c7633b85d1f420aa55f2ccb08659cb6156
4
+ data.tar.gz: f70f1d301f5a0ff5e022a0d2c3763cad056f8a5fe48466150173497a15c64a60
5
5
  SHA512:
6
- metadata.gz: 2eb36e627cd4230f22e045546dc9a6934640b611451a2f2bd89c1cd828b2daf8f9eacd982c2347d5841b37ddcac270059683ca29e858a615ebc53ca74aeb7179
7
- data.tar.gz: 71bf8272ad612190c64f4ffbf0e98f0395fd15b2b9ee23ed22b51f5fa5999a91ec10889c872fe1cf6342d7943393abbd277ec92136cf6ff36431d74fd0572807
6
+ metadata.gz: db460b1af979c5dcf9432de26f03a4ef09c5fd83f1eb711465289911f581afcbc7631630677ce57a6c31b4d12fd6887f5a2b97cf4f3e8843948e8cbd144b28b4
7
+ data.tar.gz: cb92650e5cf7285d8386cec9afa731e17c6eac0b8698e7bc0c01a12dc80fd89d1bbeaf98e4f19e4038e5ad344a48790af102de45ca56f4c1e139f87a7893a364
@@ -1,5 +1,9 @@
1
1
  # Gmail Gem Changelog
2
2
 
3
+ ## 0.7.1 - 2018-07-19
4
+
5
+ * Fix issue related to Net::IMAP.format_date change (@mnohai-mdsol)
6
+
3
7
  ## 0.7.0 - 2018-07-19
4
8
 
5
9
  * Add coveralls.io code coverage (@bootstraponline)
@@ -34,7 +34,7 @@ module Gmail
34
34
 
35
35
  opts[:after] and search.concat ['SINCE', Net::IMAP.format_date(opts[:after])]
36
36
  opts[:before] and search.concat ['BEFORE', Net::IMAP.format_date(opts[:before])]
37
- opts[:on] and search.concat ['ON', opts[:on].to_imap_date]
37
+ opts[:on] and search.concat ['ON', Net::IMAP.format_date(opts[:on])]
38
38
  opts[:from] and search.concat ['FROM', opts[:from]]
39
39
  opts[:to] and search.concat ['TO', opts[:to]]
40
40
  opts[:subject] and search.concat ['SUBJECT', opts[:subject]]
@@ -1,3 +1,3 @@
1
1
  module Gmail
2
- VERSION = "0.7.0".freeze
2
+ VERSION = "0.7.1".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gmail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Kowalik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-18 00:00:00.000000000 Z
11
+ date: 2018-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gmail_xoauth
@@ -214,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
214
214
  version: '0'
215
215
  requirements: []
216
216
  rubyforge_project:
217
- rubygems_version: 2.6.14
217
+ rubygems_version: 2.7.7
218
218
  signing_key:
219
219
  specification_version: 4
220
220
  summary: A Rubyesque interface to Gmail, with all the tools you will need.