jeremyf-gattica 0.3.7 → 0.3.8

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.3.7
2
+ *jeremyf - updated engine to not verify SSL
3
+
1
4
  == 0.3.7
2
5
  * er1c added start_index and max_results
3
6
  * er1c added paging for all results
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :minor: 3
3
- :patch: 7
3
+ :patch: 8
4
4
  :major: 0
data/gattica.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{gattica}
5
- s.version = "0.3.7"
5
+ s.version = "0.3.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Rob Cameron"]
9
- s.date = %q{2009-08-07}
9
+ s.date = %q{2009-08-20}
10
10
  s.description = %q{Gattica is a Ruby library for extracting data from the Google Analytics API.}
11
11
  s.email = %q{cannikinn@gmail.com}
12
12
  s.extra_rdoc_files = [
@@ -37,7 +37,6 @@ Gem::Specification.new do |s|
37
37
  "test/test_engine.rb",
38
38
  "test/test_gattica.rb",
39
39
  "test/test_user.rb"
40
-
41
40
  ]
42
41
  s.homepage = %q{http://github.com/cannikin/gattica}
43
42
  s.rdoc_options = ["--charset=UTF-8"]
data/lib/gattica.rb CHANGED
@@ -2,7 +2,7 @@ $:.unshift File.dirname(__FILE__) # for use/testing when no gem is installed
2
2
 
3
3
 
4
4
  module Gattica
5
- VERSION = '0.3.7'
5
+ VERSION = '0.3.8'
6
6
  end
7
7
 
8
8
  # external
@@ -87,6 +87,7 @@ module Gattica
87
87
  end
88
88
  @http = Net::HTTP::Proxy(proxy_host,proxy_port).new(SERVER, PORT)
89
89
  @http.use_ssl = SECURE
90
+ @http.verify_mode = OpenSSL::SSL::VERIFY_NONE
90
91
  @http.set_debug_output $stdout if @options[:debug]
91
92
 
92
93
  # authenticate
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jeremyf-gattica
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Cameron
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-08-07 00:00:00 -07:00
12
+ date: 2009-08-20 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15