ical2gcal 0.2.1 → 0.2.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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
data/ical2gcal.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{ical2gcal}
8
- s.version = "0.2.1"
8
+ s.version = "0.2.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["wtnabe"]
@@ -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
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ical2gcal
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 1
10
- version: 0.2.1
9
+ - 2
10
+ version: 0.2.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - wtnabe