ical2gcal 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/ical2gcal.gemspec +1 -1
- data/lib/google_calendar.rb +1 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.2
|
data/ical2gcal.gemspec
CHANGED
data/lib/google_calendar.rb
CHANGED
@@ -97,7 +97,7 @@ module Ical2gcal
|
|
97
97
|
begin
|
98
98
|
PTY.spawn( 'google calendar list' ) { |r, w|
|
99
99
|
r.expect( /(?:user|pass)/, 3 ) { |s|
|
100
|
-
raise GoogleclNotAuthenticated if ( s[0] =~ /(?:user|pass)/ )
|
100
|
+
raise GoogleclNotAuthenticated if ( s and s[0] =~ /(?:user|pass)/ )
|
101
101
|
}
|
102
102
|
}
|
103
103
|
rescue GoogleclNotAuthenticated
|
metadata
CHANGED