gxapi_rails 0.0.4 → 0.0.5
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.
- checksums.yaml +4 -4
- data/README.md +11 -5
- data/Rakefile +7 -0
- data/lib/gxapi-rails.rb +1 -0
- data/lib/gxapi.rb +7 -6
- data/lib/gxapi/base.rb +24 -11
- data/lib/gxapi/controller_methods.rb +16 -3
- data/lib/gxapi/experiment_identifier.rb +111 -0
- data/lib/gxapi/google_analytics.rb +9 -7
- data/lib/gxapi/version.rb +1 -1
- data/lib/gxapi_rails.rb +1 -0
- data/spec/dummy/log/test.log +460 -0
- data/spec/lib/gxapi/base_spec.rb +12 -1
- data/spec/lib/gxapi/experiment_identifier_spec.rb +87 -0
- data/spec/lib/gxapi/google_analytics_spec.rb +2 -1
- data/spec/spec_helper.rb +2 -0
- metadata +119 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 758bf243c5385a48220ae7475142b15dca6f3adb
|
4
|
+
data.tar.gz: 1b76ec459075d0474df02ea34ae13d75057f06bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e1d61827e0c3032dcd013386813130b48aa9f75886c272fcdce5c3e0775485e897ab22420cbe586a9c4c46fa682719a90c843f6a40f3b30d61100a60c5f6f19
|
7
|
+
data.tar.gz: de83f03c1389dcdb1b366814da2dc45db4f21cd32f4d39886c8a247892ea6d08bfe335e1087f30b5a009d5ed722a56e5559f1fafe8f333ecbb33bf73837b6e87
|
data/README.md
CHANGED
@@ -14,13 +14,13 @@ its API and determine which variant should be presented to a given user
|
|
14
14
|
First, you must create a Google Analytics Service Account.
|
15
15
|
Information can be found here https://developers.google.com/accounts/docs/OAuth2ServiceAccount
|
16
16
|
|
17
|
-
Gxapi uses `#{Rails.root}/config/gxapi.yml` to configure variables.
|
18
|
-
You can use different configurations per environment
|
17
|
+
Gxapi uses `#{Rails.root}/config/gxapi.yml` to configure variables.
|
18
|
+
You can use different configurations per environment
|
19
19
|
(development/test/production)
|
20
20
|
|
21
21
|
### Service Account Private Key
|
22
22
|
|
23
|
-
Gxapi looks for a Service Account Private Key in `config/google.p12`
|
23
|
+
Gxapi looks for a Service Account Private Key in `config/google.p12`
|
24
24
|
by default. It is best to not include the key in source control and
|
25
25
|
to either drop it off where necessary with a script or symlink it.
|
26
26
|
|
@@ -61,7 +61,7 @@ We load experiment data either
|
|
61
61
|
1. As needed if it's not in cache
|
62
62
|
2. On demand if it is in cache
|
63
63
|
|
64
|
-
Once the data for the experiment is loaded, its variant weights
|
64
|
+
Once the data for the experiment is loaded, its variant weights
|
65
65
|
(the percentage each variant is shown) will *not change* until the
|
66
66
|
data is reloaded explicitly. This is so we do not need to make an
|
67
67
|
API call to Google each time a page loads.
|
@@ -101,7 +101,7 @@ call for each experiment in a view
|
|
101
101
|
### Controller
|
102
102
|
|
103
103
|
Once you have set up an experiment in Google Analytics, you can reference
|
104
|
-
it by name in your controller
|
104
|
+
it by name or experiment_id in your controller
|
105
105
|
|
106
106
|
class PostsController < ApplicationController
|
107
107
|
|
@@ -109,6 +109,12 @@ it by name in your controller
|
|
109
109
|
gxapi_get_variant("My Experiment")
|
110
110
|
end
|
111
111
|
|
112
|
+
# OR
|
113
|
+
|
114
|
+
def other_action
|
115
|
+
gxapi_get_variant(id: 'long_hex_experiment_id')
|
116
|
+
end
|
117
|
+
|
112
118
|
end
|
113
119
|
|
114
120
|
This will use the default key `variant` for the experiment. To customize
|
data/Rakefile
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
require 'rubygems'
|
4
4
|
require 'bundler'
|
5
|
+
|
5
6
|
begin
|
6
7
|
Bundler.setup(:default, :development)
|
7
8
|
rescue Bundler::BundlerError => e
|
@@ -9,10 +10,16 @@ rescue Bundler::BundlerError => e
|
|
9
10
|
$stderr.puts "Run `bundle install` to install missing gems"
|
10
11
|
exit e.status_code
|
11
12
|
end
|
13
|
+
|
12
14
|
require 'rake'
|
13
15
|
|
14
16
|
require 'rspec/core'
|
15
17
|
require 'rspec/core/rake_task'
|
18
|
+
|
19
|
+
# tasks for releasing the gem
|
20
|
+
Bundler::GemHelper.install_tasks
|
21
|
+
|
22
|
+
|
16
23
|
RSpec::Core::RakeTask.new(:spec) do |spec|
|
17
24
|
spec.pattern = FileList['spec/**/*_spec.rb']
|
18
25
|
end
|
data/lib/gxapi-rails.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path('../gxapi', __FILE__)
|
data/lib/gxapi.rb
CHANGED
@@ -5,16 +5,12 @@ require 'json'
|
|
5
5
|
require 'yaml'
|
6
6
|
|
7
7
|
require File.expand_path('../gxapi/base', __FILE__)
|
8
|
+
require File.expand_path('../gxapi/experiment_identifier', __FILE__)
|
8
9
|
require File.expand_path('../gxapi/google_analytics', __FILE__)
|
9
10
|
require File.expand_path('../gxapi/ostruct', __FILE__)
|
10
11
|
require File.expand_path('../gxapi/version', __FILE__)
|
11
12
|
|
12
13
|
|
13
|
-
if defined?(::Rails)
|
14
|
-
require File.expand_path('../gxapi/controller_methods', __FILE__)
|
15
|
-
require File.expand_path('../gxapi/engine', __FILE__)
|
16
|
-
end
|
17
|
-
|
18
14
|
module Gxapi
|
19
15
|
|
20
16
|
#
|
@@ -157,4 +153,9 @@ module Gxapi
|
|
157
153
|
false
|
158
154
|
end
|
159
155
|
end
|
160
|
-
end
|
156
|
+
end
|
157
|
+
|
158
|
+
if defined?(::Rails)
|
159
|
+
require File.expand_path('../gxapi/controller_methods', __FILE__)
|
160
|
+
require File.expand_path('../gxapi/engine', __FILE__)
|
161
|
+
end
|
data/lib/gxapi/base.rb
CHANGED
@@ -27,20 +27,33 @@ module Gxapi
|
|
27
27
|
end
|
28
28
|
|
29
29
|
#
|
30
|
-
# return a variant value
|
30
|
+
# return a variant value by name or id
|
31
|
+
#
|
32
|
+
# @param identifier [String, Hash] The name of the experiment or a hash
|
33
|
+
# with the id of the experiment
|
34
|
+
# @param override [String] Override value returned from the experiment
|
31
35
|
#
|
32
36
|
# @example
|
33
37
|
# variant = @gxapi.get_variant("my_experiment")
|
34
38
|
# variant.value =>
|
35
39
|
# # Ostruct.new(experiment_id: "x", index: 1, name: "name")
|
36
40
|
#
|
41
|
+
# @example
|
42
|
+
# variant = @gxapi.get_variant(id: "x")
|
43
|
+
# variant.value =>
|
44
|
+
# # Ostruct.new(experiment_id: "x", index: 1, name: "name")
|
45
|
+
#
|
37
46
|
# @return [Celluloid::Future]
|
38
|
-
def get_variant(
|
47
|
+
def get_variant(identifier, override = nil)
|
48
|
+
# identifier object to handle finding and caching the
|
49
|
+
# experiment
|
50
|
+
identifier = GxApi::ExperimentIdentifier.new(identifier)
|
51
|
+
|
39
52
|
Celluloid::Future.new do
|
40
53
|
# allows us to override and get back a variant
|
41
54
|
# easily that conforms to the api
|
42
55
|
if override.nil?
|
43
|
-
self.get_variant_value(
|
56
|
+
self.get_variant_value(identifier)
|
44
57
|
else
|
45
58
|
Ostruct.new(self.default_values.merge(name: override))
|
46
59
|
end
|
@@ -61,12 +74,12 @@ module Gxapi
|
|
61
74
|
#
|
62
75
|
# cache key for a given experiment and our user
|
63
76
|
#
|
64
|
-
# @param
|
77
|
+
# @param identifier [ExperimentIdentifier] The object that finds our
|
78
|
+
# experiment key
|
65
79
|
#
|
66
80
|
# @return [String] The cache key
|
67
|
-
def cache_key(
|
68
|
-
|
69
|
-
"#{Gxapi.cache_namespace}#{self.user_key}_#{experiment_name}"
|
81
|
+
def cache_key(identifier)
|
82
|
+
"#{Gxapi.cache_namespace}#{self.user_key}_#{identifier.to_key}"
|
70
83
|
end
|
71
84
|
|
72
85
|
#
|
@@ -81,14 +94,14 @@ module Gxapi
|
|
81
94
|
# protected method to make the actual calls to get values
|
82
95
|
# from the cache or from Google
|
83
96
|
#
|
84
|
-
# @param
|
97
|
+
# @param identifier [ExperimentIdentifier] Experiment to look for
|
85
98
|
#
|
86
99
|
# @return [Gxapi::Ostruct] Experiment data
|
87
|
-
def get_variant_value(
|
100
|
+
def get_variant_value(identifier)
|
88
101
|
data = Gxapi.with_error_handling do
|
89
102
|
Timeout::timeout(2.0) do
|
90
|
-
Gxapi.cache.fetch(self.cache_key(
|
91
|
-
@interface.get_variant(
|
103
|
+
Gxapi.cache.fetch(self.cache_key(identifier)) do
|
104
|
+
@interface.get_variant(identifier).to_hash
|
92
105
|
end
|
93
106
|
end
|
94
107
|
end
|
@@ -5,11 +5,24 @@ module Gxapi
|
|
5
5
|
# Get the variant and set it as an instance variable, handling
|
6
6
|
# overriding by passing in the URL
|
7
7
|
#
|
8
|
-
# @param
|
8
|
+
# @param identifier [String, Hash] Name for the experiment or ID hash
|
9
|
+
# for the experiment
|
9
10
|
# @param ivar_name [String, Symbol] Name for the variable
|
10
11
|
#
|
12
|
+
# @example
|
13
|
+
#
|
14
|
+
# def my_action
|
15
|
+
# gxapi_get_variant("Name")
|
16
|
+
# end
|
17
|
+
#
|
18
|
+
# # OR
|
19
|
+
#
|
20
|
+
# def my_action
|
21
|
+
# gxapi_get_variant(id: 'id_from_google')
|
22
|
+
# end
|
23
|
+
#
|
11
24
|
# @return [Celluloid::Future, Gxapi::Ostruct] Variant value
|
12
|
-
def gxapi_get_variant(
|
25
|
+
def gxapi_get_variant(identifier, ivar_name = :variant)
|
13
26
|
# handle override
|
14
27
|
if params[ivar_name]
|
15
28
|
val = Gxapi::Ostruct.new(
|
@@ -20,7 +33,7 @@ module Gxapi
|
|
20
33
|
}
|
21
34
|
)
|
22
35
|
else
|
23
|
-
val = self.gxapi_base.get_variant(
|
36
|
+
val = self.gxapi_base.get_variant(identifier)
|
24
37
|
end
|
25
38
|
return instance_variable_set("@#{ivar_name}", val)
|
26
39
|
end
|
@@ -0,0 +1,111 @@
|
|
1
|
+
module GxApi
|
2
|
+
|
3
|
+
|
4
|
+
#
|
5
|
+
# Wrapper class to handle experiment identifier types
|
6
|
+
#
|
7
|
+
# @example
|
8
|
+
# identifier = ExperimentIdentifer.new("name")
|
9
|
+
# identifier.value #=> "name"
|
10
|
+
# identifier.matches_experiment?(Experiment(name: 'name')) #=> true
|
11
|
+
#
|
12
|
+
# identifier = ExperimentIdentifer.new(id: "id")
|
13
|
+
# identifier.value #=> "id"
|
14
|
+
# identifier.matches_experiment?(Experiment(id: 'id')) #=> true
|
15
|
+
#
|
16
|
+
class ExperimentIdentifier < BasicObject
|
17
|
+
|
18
|
+
#
|
19
|
+
# Constructor
|
20
|
+
#
|
21
|
+
# @param val [String, Hash] Either a String name or a Hash with ID
|
22
|
+
#
|
23
|
+
def initialize(val)
|
24
|
+
# handle a string
|
25
|
+
if val.is_a?(::String)
|
26
|
+
@proxy = NameExperimentIdentifier.new(val)
|
27
|
+
# handle an ID
|
28
|
+
elsif val.try(:[], :id)
|
29
|
+
@proxy = IdExperimentIdentifier.new(val[:id])
|
30
|
+
# error if we don't have anything valid
|
31
|
+
else
|
32
|
+
raise ArgumentError.new("#{val} is not a valid identifier type")
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
protected
|
37
|
+
|
38
|
+
#
|
39
|
+
# Implementation of method_missing
|
40
|
+
# sends to our proxy
|
41
|
+
#
|
42
|
+
# @param m [Symbol] Method name
|
43
|
+
# @param *args [Array<Mixed>] Args passed
|
44
|
+
# @param &block [Proc, nil] Block passed
|
45
|
+
#
|
46
|
+
# @return [Mixed] Whatever @proxy does
|
47
|
+
def method_missing(m, *args, &block)
|
48
|
+
@proxy.send(m, *args, &block)
|
49
|
+
end
|
50
|
+
|
51
|
+
#
|
52
|
+
# Reader for the proxy
|
53
|
+
#
|
54
|
+
# @return [GenericIdentifier]
|
55
|
+
def proxy
|
56
|
+
@proxy
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
class GenericIdentifier
|
62
|
+
|
63
|
+
# @!attribute value
|
64
|
+
# @return [Symbol] Value of this identifier
|
65
|
+
attr_reader :value
|
66
|
+
|
67
|
+
#
|
68
|
+
# Constructor
|
69
|
+
# @param value [String] Value string
|
70
|
+
#
|
71
|
+
def initialize(value)
|
72
|
+
@value = value.to_s
|
73
|
+
end
|
74
|
+
|
75
|
+
#
|
76
|
+
# Turn our value into a cache key
|
77
|
+
#
|
78
|
+
# @return [String] Key for caching
|
79
|
+
def to_key
|
80
|
+
self.value.downcase.gsub(/[^\w\d]+/,'_')
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
class IdExperimentIdentifier < GenericIdentifier
|
86
|
+
|
87
|
+
#
|
88
|
+
# Does the given experiment match the identifier by its ID
|
89
|
+
# @param experiment [Ostruct] Experiment to test
|
90
|
+
#
|
91
|
+
# @return [Boolean] Does it match?
|
92
|
+
def matches_experiment?(experiment)
|
93
|
+
self.value == experiment.try(:id)
|
94
|
+
end
|
95
|
+
|
96
|
+
end
|
97
|
+
|
98
|
+
class NameExperimentIdentifier < GenericIdentifier
|
99
|
+
|
100
|
+
#
|
101
|
+
# Does the given experiment match the identifier by its name
|
102
|
+
# @param experiment [Ostruct] Experiment to test
|
103
|
+
#
|
104
|
+
# @return [Boolean] Does it match?
|
105
|
+
def matches_experiment?(experiment)
|
106
|
+
self.value == experiment.try(:name)
|
107
|
+
end
|
108
|
+
|
109
|
+
end
|
110
|
+
|
111
|
+
end
|
@@ -6,13 +6,14 @@ module Gxapi
|
|
6
6
|
CACHE_KEY = "gxapi-google-analytics-experiments"
|
7
7
|
|
8
8
|
#
|
9
|
-
# Gets the experiment that has this name
|
9
|
+
# Gets the experiment that has this name or ID
|
10
10
|
#
|
11
|
-
# @param
|
11
|
+
# @param identifier [ExperimentIdentifier] Identifier object for the
|
12
|
+
# experiment
|
12
13
|
#
|
13
14
|
# @return [Gxapi::Ostruct]
|
14
|
-
def get_experiment(
|
15
|
-
self.get_experiments.find{|
|
15
|
+
def get_experiment(identifier)
|
16
|
+
self.get_experiments.find { |e| identifier.matches_experiment?(e)}
|
16
17
|
end
|
17
18
|
|
18
19
|
#
|
@@ -34,12 +35,13 @@ module Gxapi
|
|
34
35
|
#
|
35
36
|
# get a variant for an experiment
|
36
37
|
#
|
37
|
-
# @param
|
38
|
+
# @param identifier [String, Hash] Either the experiment name
|
39
|
+
# as a String or a hash of what to look for
|
38
40
|
#
|
39
41
|
# @return [Gxapi::Ostruct]
|
40
|
-
def get_variant(
|
42
|
+
def get_variant(identifier)
|
41
43
|
# pull in an experiment
|
42
|
-
experiment = self.get_experiment(
|
44
|
+
experiment = self.get_experiment(identifier)
|
43
45
|
|
44
46
|
if self.run_experiment?(experiment)
|
45
47
|
# select variant for the experiment
|
data/lib/gxapi/version.rb
CHANGED
data/lib/gxapi_rails.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require File.expand_path('../gxapi', __FILE__)
|
data/spec/dummy/log/test.log
CHANGED
@@ -1475,3 +1475,463 @@ Google::APIClient::Request Sending API request get https://www.googleapis.com/di
|
|
1475
1475
|
Google::APIClient::Request Result: 200 {"expires"=>"Sun, 03 Nov 2013 16:39:41 GMT", "date"=>"Sun, 03 Nov 2013 16:34:41 GMT", "etag"=>"\"DGgqtFnjgu83tuwvvVNNUhOiHWk/IpWtXM-SYuOWKLGlpsQELRW73lI\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "server"=>"GSE", "age"=>"195", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1476
1476
|
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.AHES6ZTxINQf2S34DJCAzkRWl6LOFajNFu-GlDtvcotEopxfew", "Cache-Control"=>"no-store"}
|
1477
1477
|
Google::APIClient::Request Result: 200 {"expires"=>"Sun, 03 Nov 2013 16:37:57 GMT", "date"=>"Sun, 03 Nov 2013 16:37:57 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"yw9_eWYH7O9SphOYdTrh7l9T458/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1478
|
+
Connecting to database specified by database.yml
|
1479
|
+
Google::APIClient - Initializing client with options {}
|
1480
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1481
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1482
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"225", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1483
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_U9QBlBTV7SM4HX9JljNE5vQZH8yFLKnt9elprpV_pnRQ9a-bd2nZ2_FJYZEQ", "Cache-Control"=>"no-store"}
|
1484
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:24:31 GMT", "date"=>"Fri, 17 Jan 2014 15:24:31 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1485
|
+
Started GET "/posts" for 127.0.0.1 at 2014-01-17 10:24:32 -0500
|
1486
|
+
Processing by PostsController#index as HTML
|
1487
|
+
Rendered posts/index.html.erb within layouts/application (3.5ms)
|
1488
|
+
Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms)
|
1489
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-01-17 10:24:32 -0500
|
1490
|
+
Processing by PostsController#index as HTML
|
1491
|
+
Parameters: {"variant"=>"fake_var"}
|
1492
|
+
Rendered posts/index.html.erb within layouts/application (0.3ms)
|
1493
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1494
|
+
Google::APIClient - Initializing client with options {}
|
1495
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1496
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1497
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"225", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1498
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_VmfUCPyRU1W4kitmKevO8LaAMRSBOxU2-XoufwMO2zG-zUCN_xgRKTLRjxLw", "Cache-Control"=>"no-store"}
|
1499
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:24:32 GMT", "date"=>"Fri, 17 Jan 2014 15:24:32 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1500
|
+
Google::APIClient - Initializing client with options {}
|
1501
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1502
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1503
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"226", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1504
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_XKsYwKt_hu-JWmHBXMGRgsEhX-DeQeSbIhJg7jnPJDv7ndSd5lf3ZK-f9y4A", "Cache-Control"=>"no-store"}
|
1505
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:24:32 GMT", "date"=>"Fri, 17 Jan 2014 15:24:32 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1506
|
+
Google::APIClient - Initializing client with options {}
|
1507
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1508
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1509
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"227", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1510
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_XPvFH4ZIYt57FZLTFpWZVTNPbRN5EVhPyl9FRbLadhzgaNuVD1MamfAYmDTw", "Cache-Control"=>"no-store"}
|
1511
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:24:33 GMT", "date"=>"Fri, 17 Jan 2014 15:24:33 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1512
|
+
Connecting to database specified by database.yml
|
1513
|
+
Google::APIClient - Initializing client with options {}
|
1514
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1515
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1516
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"255", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1517
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_Wuj9Ra-mr8VXZtMBuAVwFKWDkVbZ42y-eIMBjAB-F2MqxZS8T1owWU8j-sjw", "Cache-Control"=>"no-store"}
|
1518
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:01 GMT", "date"=>"Fri, 17 Jan 2014 15:25:01 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1519
|
+
Started GET "/posts" for 127.0.0.1 at 2014-01-17 10:25:03 -0500
|
1520
|
+
Processing by PostsController#index as HTML
|
1521
|
+
Rendered posts/index.html.erb within layouts/application (3.3ms)
|
1522
|
+
Completed 200 OK in 49ms (Views: 10.3ms | ActiveRecord: 0.0ms)
|
1523
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-01-17 10:25:03 -0500
|
1524
|
+
Processing by PostsController#index as HTML
|
1525
|
+
Parameters: {"variant"=>"fake_var"}
|
1526
|
+
Rendered posts/index.html.erb within layouts/application (0.3ms)
|
1527
|
+
Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1528
|
+
Google::APIClient - Initializing client with options {}
|
1529
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1530
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1531
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"256", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1532
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_V4r6nCYx09qBg4PrxWv36dIRB05T7fcgWCEN-xjINLQSh7I-ej3RbaxYMOdw", "Cache-Control"=>"no-store"}
|
1533
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:03 GMT", "date"=>"Fri, 17 Jan 2014 15:25:03 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1534
|
+
Google::APIClient - Initializing client with options {}
|
1535
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1536
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1537
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"257", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1538
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_XPGcacbvNuz6KqnE277C4KuTr4X7yOUiCwbJU4rPM22hrlf0d1YLGWe9VUAg", "Cache-Control"=>"no-store"}
|
1539
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:03 GMT", "date"=>"Fri, 17 Jan 2014 15:25:03 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1540
|
+
Google::APIClient - Initializing client with options {}
|
1541
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1542
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1543
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"257", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1544
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_XPGcacbvNuz6KqnE277C4KuTr4X7yOUiCwbJU4rPM22hrlf0d1YLGWe9VUAg", "Cache-Control"=>"no-store"}
|
1545
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:04 GMT", "date"=>"Fri, 17 Jan 2014 15:25:04 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1546
|
+
Connecting to database specified by database.yml
|
1547
|
+
Google::APIClient - Initializing client with options {}
|
1548
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1549
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1550
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"269", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1551
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_X2yVvOP0Jxrj9er60we8rUz-6JjwTE7KbdoBxKwq-XJvOjUYFt0VhECs2geQ", "Cache-Control"=>"no-store"}
|
1552
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:15 GMT", "date"=>"Fri, 17 Jan 2014 15:25:15 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1553
|
+
Started GET "/posts" for 127.0.0.1 at 2014-01-17 10:25:17 -0500
|
1554
|
+
Processing by PostsController#index as HTML
|
1555
|
+
Rendered posts/index.html.erb within layouts/application (4.5ms)
|
1556
|
+
Completed 200 OK in 52ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
1557
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-01-17 10:25:17 -0500
|
1558
|
+
Processing by PostsController#index as HTML
|
1559
|
+
Parameters: {"variant"=>"fake_var"}
|
1560
|
+
Rendered posts/index.html.erb within layouts/application (0.4ms)
|
1561
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
1562
|
+
Google::APIClient - Initializing client with options {}
|
1563
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1564
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1565
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"270", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1566
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UvjyWdpRPaz2o4jUuadmRid2FEiM78eCLIG-C3gLva8SlfOdLU8BnzLDX4Pw", "Cache-Control"=>"no-store"}
|
1567
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:16 GMT", "date"=>"Fri, 17 Jan 2014 15:25:16 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1568
|
+
Google::APIClient - Initializing client with options {}
|
1569
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1570
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1571
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"271", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1572
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UKA_jxkC8LQxGz0bt_5t73DVB2VzjnlQkhIh1jRcK9vliwTVoRQjg1meJtgw", "Cache-Control"=>"no-store"}
|
1573
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:17 GMT", "date"=>"Fri, 17 Jan 2014 15:25:17 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1574
|
+
Google::APIClient - Initializing client with options {}
|
1575
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1576
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1577
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:46 GMT", "date"=>"Fri, 17 Jan 2014 15:20:46 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"271", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1578
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UKA_jxkC8LQxGz0bt_5t73DVB2VzjnlQkhIh1jRcK9vliwTVoRQjg1meJtgw", "Cache-Control"=>"no-store"}
|
1579
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:25:17 GMT", "date"=>"Fri, 17 Jan 2014 15:25:17 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1580
|
+
Connecting to database specified by database.yml
|
1581
|
+
Connecting to database specified by database.yml
|
1582
|
+
Google::APIClient - Initializing client with options {}
|
1583
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1584
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1585
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:40:47 GMT", "date"=>"Fri, 17 Jan 2014 15:35:47 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"183", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1586
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UxIvUfyNOn_iCqf_VCV5CDgtqtVIcOtdcvH6eZW2uvYDYQWyBVUN7Qgt-_CA", "Cache-Control"=>"no-store"}
|
1587
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:38:50 GMT", "date"=>"Fri, 17 Jan 2014 15:38:50 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1588
|
+
Google::APIClient - Initializing client with options {}
|
1589
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1590
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1591
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:40:47 GMT", "date"=>"Fri, 17 Jan 2014 15:35:47 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"183", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1592
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UxIvUfyNOn_iCqf_VCV5CDgtqtVIcOtdcvH6eZW2uvYDYQWyBVUN7Qgt-_CA", "Cache-Control"=>"no-store"}
|
1593
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:38:51 GMT", "date"=>"Fri, 17 Jan 2014 15:38:51 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1594
|
+
Connecting to database specified by database.yml
|
1595
|
+
Google::APIClient - Initializing client with options {}
|
1596
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1597
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1598
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:40:47 GMT", "date"=>"Fri, 17 Jan 2014 15:35:47 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"218", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1599
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_W0ZjhLz6tTRxBWNdMX5nlr8qIQ-Vd86kyWpz48zXXQI5TqIQQLtbmPx8-u8Q", "Cache-Control"=>"no-store"}
|
1600
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:39:25 GMT", "date"=>"Fri, 17 Jan 2014 15:39:25 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1601
|
+
Google::APIClient - Initializing client with options {}
|
1602
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1603
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1604
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:40:47 GMT", "date"=>"Fri, 17 Jan 2014 15:35:47 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"219", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1605
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_U1PE-zohpdlNYQcjJXO4uN3bz2Hc8vanJJbDVQVefNx12s6CG1RVzizUdxGw", "Cache-Control"=>"no-store"}
|
1606
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 15:39:26 GMT", "date"=>"Fri, 17 Jan 2014 15:39:26 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1607
|
+
Connecting to database specified by database.yml
|
1608
|
+
Connecting to database specified by database.yml
|
1609
|
+
Connecting to database specified by database.yml
|
1610
|
+
Connecting to database specified by database.yml
|
1611
|
+
Connecting to database specified by database.yml
|
1612
|
+
Connecting to database specified by database.yml
|
1613
|
+
Connecting to database specified by database.yml
|
1614
|
+
Connecting to database specified by database.yml
|
1615
|
+
Connecting to database specified by database.yml
|
1616
|
+
Connecting to database specified by database.yml
|
1617
|
+
Connecting to database specified by database.yml
|
1618
|
+
Connecting to database specified by database.yml
|
1619
|
+
Connecting to database specified by database.yml
|
1620
|
+
Connecting to database specified by database.yml
|
1621
|
+
Connecting to database specified by database.yml
|
1622
|
+
Connecting to database specified by database.yml
|
1623
|
+
Connecting to database specified by database.yml
|
1624
|
+
Connecting to database specified by database.yml
|
1625
|
+
Connecting to database specified by database.yml
|
1626
|
+
Connecting to database specified by database.yml
|
1627
|
+
Connecting to database specified by database.yml
|
1628
|
+
Connecting to database specified by database.yml
|
1629
|
+
Connecting to database specified by database.yml
|
1630
|
+
Connecting to database specified by database.yml
|
1631
|
+
Connecting to database specified by database.yml
|
1632
|
+
Connecting to database specified by database.yml
|
1633
|
+
Connecting to database specified by database.yml
|
1634
|
+
Connecting to database specified by database.yml
|
1635
|
+
Connecting to database specified by database.yml
|
1636
|
+
Google::APIClient - Initializing client with options {}
|
1637
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1638
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1639
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"26", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1640
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_XuyVPDI9pvLjC1l14MHF0xI8027KUE_BA7B4c_jtQ0JKPjauSKG2UyG7IbrQ", "Cache-Control"=>"no-store"}
|
1641
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:11:38 GMT", "date"=>"Fri, 17 Jan 2014 16:11:38 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1642
|
+
Google::APIClient - Initializing client with options {}
|
1643
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1644
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1645
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"27", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1646
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UPP8RsrYUqQGRgn5K_kuxiMQ51RDMeb2Dq6u74lKzxt698IvlG9cO5KtxwEg", "Cache-Control"=>"no-store"}
|
1647
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:11:38 GMT", "date"=>"Fri, 17 Jan 2014 16:11:38 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1648
|
+
Connecting to database specified by database.yml
|
1649
|
+
Google::APIClient - Initializing client with options {}
|
1650
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1651
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1652
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"71", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1653
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_X3yQERoF4CsWY9x8Sfw2DQi7jxbRxZYxa4sOSxgFjFR_Rp3P1DgE-9TYJH5g", "Cache-Control"=>"no-store"}
|
1654
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:12:22 GMT", "date"=>"Fri, 17 Jan 2014 16:12:22 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1655
|
+
Google::APIClient - Initializing client with options {}
|
1656
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1657
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1658
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"71", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1659
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_VN-4QH7EUOtqm2cyuZ7rX7BfaWRjcr3Z8n_1-1q96cjOHCQSgrwp0b8GtYKw", "Cache-Control"=>"no-store"}
|
1660
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:12:23 GMT", "date"=>"Fri, 17 Jan 2014 16:12:23 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1661
|
+
Connecting to database specified by database.yml
|
1662
|
+
Google::APIClient - Initializing client with options {}
|
1663
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1664
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1665
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"85", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1666
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UpchrmWd5GK-66Sb9twAVmK-_80G8tYgUCJeo4Hx12sQZ13Ba8InkNq-TkoA", "Cache-Control"=>"no-store"}
|
1667
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:12:37 GMT", "date"=>"Fri, 17 Jan 2014 16:12:37 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1668
|
+
Google::APIClient - Initializing client with options {}
|
1669
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1670
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1671
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"86", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1672
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_WxUCJaNBAh3Cs35YQZD24cdK7yhmf_aJZHSw1ODCBJe3wU2Jv3_OsxOpmcUQ", "Cache-Control"=>"no-store"}
|
1673
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:12:37 GMT", "date"=>"Fri, 17 Jan 2014 16:12:37 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1674
|
+
Connecting to database specified by database.yml
|
1675
|
+
Google::APIClient - Initializing client with options {}
|
1676
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1677
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1678
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"93", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1679
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_V8jzXWFj6lkeuN1o-3L2E7wPA2rhUUUMcsXZko9bnr4KzyBWeo9vG-peU-dA", "Cache-Control"=>"no-store"}
|
1680
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:12:44 GMT", "date"=>"Fri, 17 Jan 2014 16:12:44 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1681
|
+
Connecting to database specified by database.yml
|
1682
|
+
Google::APIClient - Initializing client with options {}
|
1683
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1684
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1685
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"109", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1686
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_WyAeyXSHqLZeLFHSGMYoNW5aTEWaLbEy5PaAMMDiM-INnV9gYy02BBvsghLA", "Cache-Control"=>"no-store"}
|
1687
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:13:00 GMT", "date"=>"Fri, 17 Jan 2014 16:13:00 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1688
|
+
Connecting to database specified by database.yml
|
1689
|
+
Google::APIClient - Initializing client with options {}
|
1690
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1691
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1692
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"117", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1693
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UOlhllZQbJzQQcJoCh6VPRLdWVmD4_JJaaRMx44O4YYefHiDkHuXsKkQjouA", "Cache-Control"=>"no-store"}
|
1694
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:13:08 GMT", "date"=>"Fri, 17 Jan 2014 16:13:08 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1695
|
+
Started GET "/posts" for 127.0.0.1 at 2014-01-17 11:13:09 -0500
|
1696
|
+
Processing by PostsController#index as HTML
|
1697
|
+
Rendered posts/index.html.erb within layouts/application (3.3ms)
|
1698
|
+
Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
|
1699
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-01-17 11:13:09 -0500
|
1700
|
+
Processing by PostsController#index as HTML
|
1701
|
+
Parameters: {"variant"=>"fake_var"}
|
1702
|
+
Rendered posts/index.html.erb within layouts/application (0.3ms)
|
1703
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1704
|
+
Google::APIClient - Initializing client with options {}
|
1705
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1706
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1707
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"117", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1708
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_V7lDaA-3zVpuj3-rfx6nwHKghAtGxtOA1H1V9pI7IcTjQmCgn-Tnim8uDE0Q", "Cache-Control"=>"no-store"}
|
1709
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:13:09 GMT", "date"=>"Fri, 17 Jan 2014 16:13:09 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1710
|
+
Google::APIClient - Initializing client with options {}
|
1711
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1712
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1713
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"118", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1714
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_U_CWfwA_qK6H8nd4_l8ifU6wHyA_ro9M38YU8qPDCNmkk4A_Nbn6D7WGTjtw", "Cache-Control"=>"no-store"}
|
1715
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:13:09 GMT", "date"=>"Fri, 17 Jan 2014 16:13:09 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1716
|
+
Google::APIClient - Initializing client with options {}
|
1717
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1718
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1719
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"119", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1720
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_U_CWfwA_qK6H8nd4_l8ifU6wHyA_ro9M38YU8qPDCNmkk4A_Nbn6D7WGTjtw", "Cache-Control"=>"no-store"}
|
1721
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:13:10 GMT", "date"=>"Fri, 17 Jan 2014 16:13:10 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1722
|
+
Connecting to database specified by database.yml
|
1723
|
+
Google::APIClient - Initializing client with options {}
|
1724
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1725
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1726
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"169", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1727
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_WexijOlp44IvkG8qTpIP0xk1Q_OoCVrrLwefPyBNommCHWbv-6fi0iFtiwvQ", "Cache-Control"=>"no-store"}
|
1728
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:14:00 GMT", "date"=>"Fri, 17 Jan 2014 16:14:00 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1729
|
+
Google::APIClient - Initializing client with options {}
|
1730
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1731
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1732
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:16:11 GMT", "date"=>"Fri, 17 Jan 2014 16:11:11 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"170", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1733
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UTtWmsBy3JjDh69bn0SVTKTAQco05Kri0jCjipvv848hm-rQTYraa-aSWDYA", "Cache-Control"=>"no-store"}
|
1734
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:14:01 GMT", "date"=>"Fri, 17 Jan 2014 16:14:01 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1735
|
+
Connecting to database specified by database.yml
|
1736
|
+
Google::APIClient - Initializing client with options {}
|
1737
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1738
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1739
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"19", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1740
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_VaVtETxiKYW9nzRDzhrQM80LgkPrxqmeHWSDHutENo3oQj4GYbz8RdYED8jQ", "Cache-Control"=>"no-store"}
|
1741
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:36:34 GMT", "date"=>"Fri, 17 Jan 2014 16:36:34 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1742
|
+
Started GET "/posts" for 127.0.0.1 at 2014-01-17 11:36:35 -0500
|
1743
|
+
Processing by PostsController#index as HTML
|
1744
|
+
Completed 500 Internal Server Error in 42ms
|
1745
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-01-17 11:36:35 -0500
|
1746
|
+
Processing by PostsController#index as HTML
|
1747
|
+
Parameters: {"variant"=>"fake_var"}
|
1748
|
+
Rendered posts/index.html.erb within layouts/application (2.7ms)
|
1749
|
+
Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
1750
|
+
Google::APIClient - Initializing client with options {}
|
1751
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1752
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1753
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"20", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1754
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_VaVtETxiKYW9nzRDzhrQM80LgkPrxqmeHWSDHutENo3oQj4GYbz8RdYED8jQ", "Cache-Control"=>"no-store"}
|
1755
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:36:35 GMT", "date"=>"Fri, 17 Jan 2014 16:36:35 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1756
|
+
Google::APIClient - Initializing client with options {}
|
1757
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1758
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1759
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"20", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1760
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_WuenCdQ-k7jfXzJXg8kCKmPv6ocw1NHG1Rgj1cvLmLQSjogbeVksH-eUmg1A", "Cache-Control"=>"no-store"}
|
1761
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:36:35 GMT", "date"=>"Fri, 17 Jan 2014 16:36:35 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1762
|
+
Google::APIClient - Initializing client with options {}
|
1763
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1764
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1765
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"21", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1766
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UwiFuVfNZbtMykM8ij4HCvkEFUyET6ey5bvOibtIIlLGMs6Qm7gujOKBJiyg", "Cache-Control"=>"no-store"}
|
1767
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:36:36 GMT", "date"=>"Fri, 17 Jan 2014 16:36:36 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1768
|
+
Connecting to database specified by database.yml
|
1769
|
+
Google::APIClient - Initializing client with options {}
|
1770
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1771
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1772
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"49", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1773
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_WGH_zZGHWtK-NQDNofOzh4_IGKLRog2jbYU8_ex_YYuGlH0ciYR_3JgDUAiA", "Cache-Control"=>"no-store"}
|
1774
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:04 GMT", "date"=>"Fri, 17 Jan 2014 16:37:04 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1775
|
+
Started GET "/posts" for 127.0.0.1 at 2014-01-17 11:37:06 -0500
|
1776
|
+
Processing by PostsController#index as HTML
|
1777
|
+
Rendered posts/index.html.erb within layouts/application (3.1ms)
|
1778
|
+
Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
|
1779
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-01-17 11:37:06 -0500
|
1780
|
+
Processing by PostsController#index as HTML
|
1781
|
+
Parameters: {"variant"=>"fake_var"}
|
1782
|
+
Rendered posts/index.html.erb within layouts/application (0.3ms)
|
1783
|
+
Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1784
|
+
Google::APIClient - Initializing client with options {}
|
1785
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1786
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1787
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"50", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1788
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UIRG-FfIMBdIUg7t-HrHHiG4C_DCHmDBby3pnzLO3HQuytEYWzEa-wtTbl_Q", "Cache-Control"=>"no-store"}
|
1789
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:05 GMT", "date"=>"Fri, 17 Jan 2014 16:37:05 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1790
|
+
Google::APIClient - Initializing client with options {}
|
1791
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1792
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1793
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"50", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1794
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UIRG-FfIMBdIUg7t-HrHHiG4C_DCHmDBby3pnzLO3HQuytEYWzEa-wtTbl_Q", "Cache-Control"=>"no-store"}
|
1795
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:06 GMT", "date"=>"Fri, 17 Jan 2014 16:37:06 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1796
|
+
Google::APIClient - Initializing client with options {}
|
1797
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1798
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1799
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"51", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1800
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_XdSBv3ldVHqIq4Jwk4Uy3mw3hnqM9cslSxxQZ8PnIFYfueEwUHKHxLPqS6ug", "Cache-Control"=>"no-store"}
|
1801
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:06 GMT", "date"=>"Fri, 17 Jan 2014 16:37:06 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1802
|
+
Connecting to database specified by database.yml
|
1803
|
+
Google::APIClient - Initializing client with options {}
|
1804
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1805
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1806
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"63", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1807
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UYoM_rL2YVQjGVPECJjbmmzuE7_Q1IUaGLTTi9_nyawWaiADpWkk0gdNtCfg", "Cache-Control"=>"no-store"}
|
1808
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:18 GMT", "date"=>"Fri, 17 Jan 2014 16:37:18 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1809
|
+
Started GET "/posts" for 127.0.0.1 at 2014-01-17 11:37:19 -0500
|
1810
|
+
Processing by PostsController#index as HTML
|
1811
|
+
Rendered posts/index.html.erb within layouts/application (3.7ms)
|
1812
|
+
Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
|
1813
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-01-17 11:37:19 -0500
|
1814
|
+
Processing by PostsController#index as HTML
|
1815
|
+
Parameters: {"variant"=>"fake_var"}
|
1816
|
+
Rendered posts/index.html.erb within layouts/application (0.4ms)
|
1817
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
1818
|
+
Google::APIClient - Initializing client with options {}
|
1819
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1820
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1821
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"64", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1822
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_UYoM_rL2YVQjGVPECJjbmmzuE7_Q1IUaGLTTi9_nyawWaiADpWkk0gdNtCfg", "Cache-Control"=>"no-store"}
|
1823
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:19 GMT", "date"=>"Fri, 17 Jan 2014 16:37:19 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1824
|
+
Google::APIClient - Initializing client with options {}
|
1825
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1826
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1827
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"65", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1828
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_VWn23iU-b_60JlfRRQzNyPOl7rCaAdPNS10PhewPGtVP8h0b2-X-nyBPJd9A", "Cache-Control"=>"no-store"}
|
1829
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:20 GMT", "date"=>"Fri, 17 Jan 2014 16:37:20 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1830
|
+
Google::APIClient - Initializing client with options {}
|
1831
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1832
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1833
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"65", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1834
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_WAfcOgdtColaoeLFIGsyBXwX0HEcZHc5tjDdS-ehuhN22FKOm6_CfIXV-twg", "Cache-Control"=>"no-store"}
|
1835
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:20 GMT", "date"=>"Fri, 17 Jan 2014 16:37:20 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1836
|
+
Connecting to database specified by database.yml
|
1837
|
+
Google::APIClient - Initializing client with options {}
|
1838
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1839
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1840
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"73", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1841
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_W3IJByyFbjaSb-3DmDQXaaQYPA4_D6FGkd65S0zTx7F2uaN6nGn8GfBwdJyQ", "Cache-Control"=>"no-store"}
|
1842
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:28 GMT", "date"=>"Fri, 17 Jan 2014 16:37:28 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1843
|
+
Started GET "/posts" for 127.0.0.1 at 2014-01-17 11:37:29 -0500
|
1844
|
+
Processing by PostsController#index as HTML
|
1845
|
+
Rendered posts/index.html.erb within layouts/application (2.4ms)
|
1846
|
+
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
|
1847
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-01-17 11:37:29 -0500
|
1848
|
+
Processing by PostsController#index as HTML
|
1849
|
+
Parameters: {"variant"=>"fake_var"}
|
1850
|
+
Rendered posts/index.html.erb within layouts/application (0.3ms)
|
1851
|
+
Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1852
|
+
Google::APIClient - Initializing client with options {}
|
1853
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1854
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1855
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"74", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1856
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_VgxT5xqFw6lSMMd4_c87j0m6AUcmNOjV3oo_662-eHl4G-76Vb7-vMm6JqxQ", "Cache-Control"=>"no-store"}
|
1857
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:29 GMT", "date"=>"Fri, 17 Jan 2014 16:37:29 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1858
|
+
Google::APIClient - Initializing client with options {}
|
1859
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1860
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1861
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"74", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1862
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_VgxT5xqFw6lSMMd4_c87j0m6AUcmNOjV3oo_662-eHl4G-76Vb7-vMm6JqxQ", "Cache-Control"=>"no-store"}
|
1863
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:29 GMT", "date"=>"Fri, 17 Jan 2014 16:37:29 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1864
|
+
Google::APIClient - Initializing client with options {}
|
1865
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1866
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5"}
|
1867
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:41:15 GMT", "date"=>"Fri, 17 Jan 2014 16:36:15 GMT", "etag"=>"\"tULrrR40efdnlRwwE-0yfmGtEgI/9Mb__zWkdivLUYRry6KufGQ683g\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"147883", "server"=>"GSE", "age"=>"75", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1868
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.8.5", "Authorization"=>"Bearer ya29.1.AADtN_XAfkjoZCxDytkLZmPnPaKxRJNZdTkBqT1oPzHSVHKKAQs5zCpRt6pS4OFcuw", "Cache-Control"=>"no-store"}
|
1869
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Fri, 17 Jan 2014 16:37:30 GMT", "date"=>"Fri, 17 Jan 2014 16:37:30 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"pV0w06uvDpt_G5h5Uypvv4wgAZk/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1870
|
+
Connecting to database specified by database.yml
|
1871
|
+
Google::APIClient - Initializing client with options {}
|
1872
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1873
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2"}
|
1874
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:28:33 GMT", "date"=>"Tue, 18 Mar 2014 12:23:33 GMT", "etag"=>"\"PoXr25DWmmN6KaMjdGmecv0bPt8/dNY8WM7wPjnPhJN2ODTycMHNAas\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"148296", "server"=>"GSE", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "age"=>"0", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1875
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2", "Authorization"=>"Bearer ya29.1.AADtN_Xx7KnlI5yoMuvgmc8Zp8UzZK-qkmBIa5rsxmKmlRsuyKfP99-854KpqAdRlA", "Cache-Control"=>"no-store"}
|
1876
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:23:33 GMT", "date"=>"Tue, 18 Mar 2014 12:23:33 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"a71WwETdQwAtQQlKuH-J4PTJUJc/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1877
|
+
Started GET "/posts" for 127.0.0.1 at 2014-03-18 08:25:40 -0400
|
1878
|
+
Processing by PostsController#index as HTML
|
1879
|
+
Rendered posts/index.html.erb within layouts/application (3.7ms)
|
1880
|
+
Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.0ms)
|
1881
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-03-18 08:25:40 -0400
|
1882
|
+
Processing by PostsController#index as HTML
|
1883
|
+
Parameters: {"variant"=>"fake_var"}
|
1884
|
+
Rendered posts/index.html.erb within layouts/application (0.4ms)
|
1885
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1886
|
+
Google::APIClient - Initializing client with options {}
|
1887
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1888
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2"}
|
1889
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:28:34 GMT", "date"=>"Tue, 18 Mar 2014 12:23:34 GMT", "etag"=>"\"PoXr25DWmmN6KaMjdGmecv0bPt8/dNY8WM7wPjnPhJN2ODTycMHNAas\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"148296", "server"=>"GSE", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "age"=>"0", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1890
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2", "Authorization"=>"Bearer ya29.1.AADtN_UyPLTZ5smr6KnEhZdtgRC29ZNHbA8-5_AVIHPGHyXwZ_tsjg1-xpxxwh5pCQ", "Cache-Control"=>"no-store"}
|
1891
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:23:34 GMT", "date"=>"Tue, 18 Mar 2014 12:23:34 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"a71WwETdQwAtQQlKuH-J4PTJUJc/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1892
|
+
Google::APIClient - Initializing client with options {}
|
1893
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1894
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2"}
|
1895
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:27:16 GMT", "date"=>"Tue, 18 Mar 2014 12:22:16 GMT", "etag"=>"\"PoXr25DWmmN6KaMjdGmecv0bPt8/dNY8WM7wPjnPhJN2ODTycMHNAas\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"148296", "server"=>"GSE", "age"=>"79", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1896
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2", "Authorization"=>"Bearer ya29.1.AADtN_UyPLTZ5smr6KnEhZdtgRC29ZNHbA8-5_AVIHPGHyXwZ_tsjg1-xpxxwh5pCQ", "Cache-Control"=>"no-store"}
|
1897
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:23:35 GMT", "date"=>"Tue, 18 Mar 2014 12:23:35 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"a71WwETdQwAtQQlKuH-J4PTJUJc/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1898
|
+
Google::APIClient - Initializing client with options {}
|
1899
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1900
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2"}
|
1901
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:25:13 GMT", "date"=>"Tue, 18 Mar 2014 12:20:13 GMT", "etag"=>"\"PoXr25DWmmN6KaMjdGmecv0bPt8/dNY8WM7wPjnPhJN2ODTycMHNAas\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"148296", "server"=>"GSE", "age"=>"202", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1902
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2", "Authorization"=>"Bearer ya29.1.AADtN_WWFt67dJg9T7AjBc7PBhOVc8gpTcJTfwZZ94C8PCfyGFGYF-7ssMdEsSFyWQ", "Cache-Control"=>"no-store"}
|
1903
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:23:36 GMT", "date"=>"Tue, 18 Mar 2014 12:23:36 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"a71WwETdQwAtQQlKuH-J4PTJUJc/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1904
|
+
Connecting to database specified by database.yml
|
1905
|
+
Google::APIClient - Initializing client with options {}
|
1906
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1907
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2"}
|
1908
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:29:28 GMT", "date"=>"Tue, 18 Mar 2014 12:24:28 GMT", "etag"=>"\"PoXr25DWmmN6KaMjdGmecv0bPt8/dNY8WM7wPjnPhJN2ODTycMHNAas\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"148296", "server"=>"GSE", "age"=>"30", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1909
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2", "Authorization"=>"Bearer ya29.1.AADtN_X0C8qx2zZWzQ14n-Ee60V39v4AWnvqXeZLPJBBIcFvW9JrbtNeKirzMZ0_8g", "Cache-Control"=>"no-store"}
|
1910
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:24:58 GMT", "date"=>"Tue, 18 Mar 2014 12:24:58 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"a71WwETdQwAtQQlKuH-J4PTJUJc/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1911
|
+
Started GET "/posts" for 127.0.0.1 at 2014-03-18 08:27:05 -0400
|
1912
|
+
Processing by PostsController#index as HTML
|
1913
|
+
Rendered posts/index.html.erb within layouts/application (5.3ms)
|
1914
|
+
Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
|
1915
|
+
Started GET "/posts?variant=fake_var" for 127.0.0.1 at 2014-03-18 08:27:05 -0400
|
1916
|
+
Processing by PostsController#index as HTML
|
1917
|
+
Parameters: {"variant"=>"fake_var"}
|
1918
|
+
Rendered posts/index.html.erb within layouts/application (0.3ms)
|
1919
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1920
|
+
Google::APIClient - Initializing client with options {}
|
1921
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1922
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2"}
|
1923
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:29:28 GMT", "date"=>"Tue, 18 Mar 2014 12:24:28 GMT", "etag"=>"\"PoXr25DWmmN6KaMjdGmecv0bPt8/dNY8WM7wPjnPhJN2ODTycMHNAas\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"148296", "server"=>"GSE", "age"=>"31", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1924
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2", "Authorization"=>"Bearer ya29.1.AADtN_Upp6Axh2hnrEb7pGRxTetgEZ-0AL_X8LkdnN1ogIfFmXRN4c-I6R5xdmp_3A", "Cache-Control"=>"no-store"}
|
1925
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:24:59 GMT", "date"=>"Tue, 18 Mar 2014 12:24:59 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"a71WwETdQwAtQQlKuH-J4PTJUJc/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1926
|
+
Google::APIClient - Initializing client with options {}
|
1927
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1928
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2"}
|
1929
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:29:28 GMT", "date"=>"Tue, 18 Mar 2014 12:24:28 GMT", "etag"=>"\"PoXr25DWmmN6KaMjdGmecv0bPt8/dNY8WM7wPjnPhJN2ODTycMHNAas\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"148296", "server"=>"GSE", "age"=>"32", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1930
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2", "Authorization"=>"Bearer ya29.1.AADtN_Upp6Axh2hnrEb7pGRxTetgEZ-0AL_X8LkdnN1ogIfFmXRN4c-I6R5xdmp_3A", "Cache-Control"=>"no-store"}
|
1931
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:25:00 GMT", "date"=>"Tue, 18 Mar 2014 12:25:00 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"a71WwETdQwAtQQlKuH-J4PTJUJc/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1932
|
+
Google::APIClient - Initializing client with options {}
|
1933
|
+
Google::APIClient - Please provide :application_name and :application_version when initializing the client
|
1934
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/discovery/v1/apis/analytics/v3/rest {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2"}
|
1935
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:29:28 GMT", "date"=>"Tue, 18 Mar 2014 12:24:28 GMT", "etag"=>"\"PoXr25DWmmN6KaMjdGmecv0bPt8/dNY8WM7wPjnPhJN2ODTycMHNAas\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"148296", "server"=>"GSE", "age"=>"32", "cache-control"=>"public, max-age=300, must-revalidate, no-transform", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|
1936
|
+
Google::APIClient::Request Sending API request get https://www.googleapis.com/analytics/v3/management/accounts/2633140/webproperties/UA-2633140-6/profiles/73788770/experiments {"User-Agent"=>"google-api-ruby-client/0.6.4 Mac OS X/10.9.2", "Authorization"=>"Bearer ya29.1.AADtN_WANqgZwj3kQ8bTB2QPutdOBlnkVmYK7OMBinMadWJT51vr0-g6_zOjL-S5Hw", "Cache-Control"=>"no-store"}
|
1937
|
+
Google::APIClient::Request Result: 200 {"expires"=>"Tue, 18 Mar 2014 12:25:01 GMT", "date"=>"Tue, 18 Mar 2014 12:25:01 GMT", "cache-control"=>"private, max-age=0, must-revalidate, no-transform", "etag"=>"\"a71WwETdQwAtQQlKuH-J4PTJUJc/AY1ok-SnzMKmiDcm5ZadMNt1hQU\"", "content-type"=>"application/json; charset=UTF-8", "x-content-type-options"=>"nosniff", "x-frame-options"=>"SAMEORIGIN", "x-xss-protection"=>"1; mode=block", "content-length"=>"2236", "server"=>"GSE", "alternate-protocol"=>"443:quic", "connection"=>"close"}
|