gcal4ruby 0.2.8 → 0.2.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/CHANGELOG +2 -0
  2. data/lib/gcal4ruby/base.rb +3 -2
  3. metadata +2 -2
data/CHANGELOG CHANGED
@@ -1,4 +1,6 @@
1
1
  #=CHANGELOG
2
+ #==version 0.2.9
3
+ #* Fixed small SSL redirect bug due to variable misnaming in base.rb. Fix provided by JohnMetta
2
4
  #==version 0.2.8
3
5
  #* Merged changes from edruder and h13ronim from the unofficial github repo - http://github.com/h13ronim/gcal4ruby/commits/master
4
6
  #==version 0.2.7
@@ -180,9 +180,10 @@ module GCal4Ruby
180
180
  http = get_http_object(location)
181
181
  puts "url = "+url if @debug
182
182
  if location.scheme == 'https'
183
+ #fixed http/https misnaming via JohnMetta
183
184
  puts "SSL True" if @debug
184
- https.use_ssl = true
185
- https.verify_mode = OpenSSL::SSL::VERIFY_NONE
185
+ http.use_ssl = true
186
+ http.verify_mode = OpenSSL::SSL::VERIFY_NONE
186
187
  end
187
188
  puts "Starting post\nHeader: #{header}\n" if @debug
188
189
  http.start do |http|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gcal4ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.8
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Reich
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-31 00:00:00 +11:00
12
+ date: 2010-01-11 00:00:00 +10:30
13
13
  default_executable:
14
14
  dependencies: []
15
15