vmail 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -486,8 +486,13 @@ vmail users, please add them to the [vmail wiki][wiki].
486
486
 
487
487
  ## How to contact the developer
488
488
 
489
- My name is Daniel Choi. I am based in Cambridge, MA, and you can email me at dhchoi@gmail.com.
490
- You can [follow me on Twitter][twitter] too.
489
+ My name is Daniel Choi. I am based in Cambridge, MA, and you can email me at
490
+ dhchoi@gmail.com. You can [follow me on Twitter][twitter] too. A big shout
491
+ out goes to my funny, smart, and supportive fellow hacker alums of
492
+ [Betahouse][betahouse].
493
+
494
+ [betahouse]:http://betahouse.org/
495
+
491
496
 
492
497
  [twitter]:http://twitter.com/#!/danchoi
493
498
 
@@ -147,7 +147,8 @@ module Vmail
147
147
  end
148
148
 
149
149
  def list_mailboxes
150
- @mailboxes ||= (@imap.list("[Gmail]/", "%") + @imap.list("", "%")).
150
+ log 'loading mailboxes...'
151
+ @mailboxes ||= ((@imap.list("[Gmail]/", "%") || []) + (@imap.list("", "%")) || []).
151
152
  select {|struct| struct.attr.none? {|a| a == :Noselect} }.
152
153
  map {|struct| struct.name}.
153
154
  map {|name| MailboxAliases.invert[name] || name}
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 1
8
- - 1
9
- version: 1.1.1
8
+ - 2
9
+ version: 1.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-12-22 00:00:00 -05:00
17
+ date: 2010-12-23 00:00:00 -05:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency