rollout_ui 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +4 -0
- data/lib/rollout_ui.rb +2 -3
- data/lib/rollout_ui/engine/app/controllers/rollout_ui/features_controller.rb +2 -2
- data/lib/rollout_ui/engine/app/views/layouts/rollout_ui/application.html.erb +2 -2
- data/lib/rollout_ui/feature.rb +10 -12
- data/lib/rollout_ui/monkey_patch.rb +1 -1
- data/lib/rollout_ui/server.rb +6 -1
- data/lib/rollout_ui/server/views/layout.erb +2 -2
- data/lib/rollout_ui/version.rb +1 -1
- data/lib/rollout_ui/wrapper.rb +3 -2
- data/spec/dummy/config/application.rb +5 -1
- data/spec/dummy/log/test.log +549 -260
- data/spec/lib/rollout_ui/feature_spec.rb +15 -4
- data/spec/lib/rollout_ui/wrapper_spec.rb +11 -2
- data/spec/requests/engine/engine_spec.rb +14 -0
- metadata +149 -166
- data/spec/dummy/config/database.yml +0 -14
data/README.markdown
CHANGED
data/lib/rollout_ui.rb
CHANGED
@@ -2,11 +2,10 @@ require 'redis'
|
|
2
2
|
require 'rollout'
|
3
3
|
require 'rollout_ui/monkey_patch'
|
4
4
|
|
5
|
-
# Hack so we only load the engine when Rails will support it.
|
6
|
-
# TODO: find a better way
|
7
5
|
if defined?(Rails) && Rails::VERSION::STRING.to_f >= 3.1
|
6
|
+
# Hack so that if the Engine is ever required, it's
|
7
|
+
# able to find it's assets, etc. TODO: find a better way
|
8
8
|
$:.unshift File.expand_path("rollout_ui/engine/lib", File.dirname(__FILE__))
|
9
|
-
require 'rollout_ui/engine'
|
10
9
|
end
|
11
10
|
|
12
11
|
module RolloutUi
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module RolloutUi
|
2
|
-
class FeaturesController < ApplicationController
|
3
|
-
before_filter :wrapper
|
2
|
+
class FeaturesController < RolloutUi::ApplicationController
|
3
|
+
before_filter :wrapper, :only => [:index]
|
4
4
|
|
5
5
|
def index
|
6
6
|
@features = @wrapper.features.map{ |feature| RolloutUi::Feature.new(feature) }
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>RolloutUI</title>
|
5
|
-
<link href='
|
5
|
+
<link href='//fonts.googleapis.com/css?family=Ultra' rel='stylesheet' type='text/css'>
|
6
6
|
<%= stylesheet_link_tag "rollout_ui/application" %>
|
7
7
|
<%= csrf_meta_tags %>
|
8
8
|
</head>
|
@@ -18,7 +18,7 @@
|
|
18
18
|
</div>
|
19
19
|
</body>
|
20
20
|
|
21
|
-
<script type="text/javascript" src="
|
21
|
+
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
|
22
22
|
<%= javascript_include_tag "rollout_ui/application" %>
|
23
23
|
|
24
24
|
<script type="text/javascript">
|
data/lib/rollout_ui/feature.rb
CHANGED
@@ -6,32 +6,32 @@ module RolloutUi
|
|
6
6
|
|
7
7
|
def initialize(name)
|
8
8
|
@wrapper = Wrapper.new
|
9
|
-
@name = name
|
9
|
+
@name = name.to_sym
|
10
10
|
end
|
11
11
|
|
12
12
|
def percentage
|
13
|
-
|
13
|
+
rollout.get(feature_for(name)).percentage.to_s
|
14
14
|
end
|
15
15
|
|
16
16
|
def groups
|
17
|
-
|
17
|
+
rollout.get(feature_for(name)).groups
|
18
18
|
end
|
19
19
|
|
20
20
|
def user_ids
|
21
|
-
|
21
|
+
rollout.get(feature_for(name)).users
|
22
22
|
end
|
23
23
|
|
24
|
-
def percentage=(
|
25
|
-
rollout.activate_percentage(name,
|
24
|
+
def percentage=(percentage_val)
|
25
|
+
rollout.activate_percentage(name, percentage_val.to_i)
|
26
26
|
end
|
27
27
|
|
28
28
|
def groups=(groups)
|
29
|
-
|
29
|
+
self.groups.each { |group| rollout.deactivate_group(name, group) }
|
30
30
|
groups.each { |group| rollout.activate_group(name, group) unless group.to_s.empty? }
|
31
31
|
end
|
32
32
|
|
33
33
|
def user_ids=(ids)
|
34
|
-
|
34
|
+
self.user_ids.each { |id| rollout.deactivate_user(name, User.new(id)) unless id.to_s.empty? }
|
35
35
|
ids.each { |id| rollout.activate_user(name, User.new(id)) unless id.to_s.empty? }
|
36
36
|
end
|
37
37
|
|
@@ -45,10 +45,8 @@ module RolloutUi
|
|
45
45
|
@wrapper.rollout
|
46
46
|
end
|
47
47
|
|
48
|
-
|
49
|
-
|
48
|
+
def feature_for(name)
|
49
|
+
rollout.features.select{|elem| elem == name}.first
|
50
50
|
end
|
51
|
-
|
52
|
-
|
53
51
|
end
|
54
52
|
end
|
data/lib/rollout_ui/server.rb
CHANGED
@@ -13,9 +13,14 @@ module RolloutUi
|
|
13
13
|
dir = File.dirname(File.expand_path(__FILE__))
|
14
14
|
|
15
15
|
set :views, "#{dir}/server/views"
|
16
|
-
set :public, "#{dir}/server/public"
|
17
16
|
set :static, true
|
18
17
|
|
18
|
+
if respond_to? :public_folder
|
19
|
+
set :public_folder, "#{dir}/server/public"
|
20
|
+
else
|
21
|
+
set :public, "#{dir}/server/public"
|
22
|
+
end
|
23
|
+
|
19
24
|
helpers do
|
20
25
|
include Rack::Utils
|
21
26
|
alias_method :h, :escape_html
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>RolloutUI</title>
|
5
|
-
<link href='
|
5
|
+
<link href='//fonts.googleapis.com/css?family=Ultra' rel='stylesheet' type='text/css'>
|
6
6
|
<link href="<%=u 'rollout_ui/application.css' %>" media="screen" rel="stylesheet" type="text/css" />
|
7
7
|
</head>
|
8
8
|
|
@@ -17,7 +17,7 @@
|
|
17
17
|
</div>
|
18
18
|
</body>
|
19
19
|
|
20
|
-
<script type="text/javascript" src="
|
20
|
+
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
|
21
21
|
<script src="<%=u 'rollout_ui/application.js' %>" type="text/javascript"></script>
|
22
22
|
<script type="text/javascript">
|
23
23
|
$(function() {
|
data/lib/rollout_ui/version.rb
CHANGED
data/lib/rollout_ui/wrapper.rb
CHANGED
@@ -18,11 +18,12 @@ module RolloutUi
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def features
|
21
|
-
redis.smembers(:features)
|
21
|
+
features = redis.smembers(:features)
|
22
|
+
features ? features.sort : []
|
22
23
|
end
|
23
24
|
|
24
25
|
def redis
|
25
|
-
rollout.instance_variable_get("@
|
26
|
+
rollout.instance_variable_get("@storage")
|
26
27
|
end
|
27
28
|
end
|
28
29
|
end
|
@@ -1,9 +1,13 @@
|
|
1
1
|
require File.expand_path('../boot', __FILE__)
|
2
2
|
|
3
|
-
require
|
3
|
+
require "action_controller/railtie"
|
4
|
+
require "action_mailer/railtie"
|
5
|
+
require "active_resource/railtie"
|
4
6
|
|
5
7
|
Bundler.require
|
8
|
+
|
6
9
|
require "rollout_ui"
|
10
|
+
require "rollout_ui/engine"
|
7
11
|
|
8
12
|
module Dummy
|
9
13
|
class Application < Rails::Application
|
data/spec/dummy/log/test.log
CHANGED
@@ -1,605 +1,894 @@
|
|
1
1
|
|
2
2
|
|
3
|
-
Started GET "/rollout" for 127.0.0.1 at
|
3
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
4
4
|
Processing by RolloutUi::FeaturesController#index as HTML
|
5
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
6
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb within layouts/rollout_ui/application (
|
7
|
-
Completed 200 OK in
|
5
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.7ms)
|
6
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb within layouts/rollout_ui/application (18.0ms)
|
7
|
+
Completed 200 OK in 29ms (Views: 28.0ms)
|
8
8
|
|
9
9
|
|
10
|
-
Started GET "/rollout" for 127.0.0.1 at
|
10
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
11
11
|
Processing by RolloutUi::FeaturesController#index as HTML
|
12
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
13
|
-
Completed 200 OK in
|
12
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.3ms)
|
13
|
+
Completed 200 OK in 16ms (Views: 15.5ms)
|
14
14
|
|
15
15
|
|
16
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
16
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
17
17
|
Processing by RolloutUi::FeaturesController#update as HTML
|
18
|
-
Parameters: {"utf8"=>"
|
18
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"100", "id"=>"featureA"}
|
19
19
|
Redirected to http://www.example.com/rollout/features
|
20
20
|
Completed 302 Found in 1ms
|
21
21
|
|
22
22
|
|
23
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
23
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
24
24
|
Processing by RolloutUi::FeaturesController#index as HTML
|
25
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
26
|
-
Completed 200 OK in
|
25
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.9ms)
|
26
|
+
Completed 200 OK in 17ms (Views: 16.2ms)
|
27
27
|
|
28
28
|
|
29
|
-
Started GET "/rollout" for 127.0.0.1 at
|
29
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
30
30
|
Processing by RolloutUi::FeaturesController#index as HTML
|
31
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
32
|
-
Completed 200 OK in
|
31
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.0ms)
|
32
|
+
Completed 200 OK in 16ms (Views: 15.3ms)
|
33
33
|
|
34
34
|
|
35
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
35
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
36
36
|
Processing by RolloutUi::FeaturesController#update as HTML
|
37
|
-
Parameters: {"utf8"=>"
|
37
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"57", "id"=>"featureA"}
|
38
38
|
Redirected to http://www.example.com/rollout/features
|
39
39
|
Completed 302 Found in 1ms
|
40
40
|
|
41
41
|
|
42
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
42
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
43
43
|
Processing by RolloutUi::FeaturesController#index as HTML
|
44
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
45
|
-
Completed 200 OK in
|
44
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.8ms)
|
45
|
+
Completed 200 OK in 16ms (Views: 15.8ms)
|
46
46
|
|
47
47
|
|
48
|
-
Started GET "/rollout" for 127.0.0.1 at
|
48
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
49
49
|
Processing by RolloutUi::FeaturesController#index as HTML
|
50
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
51
|
-
Completed 200 OK in
|
50
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.5ms)
|
51
|
+
Completed 200 OK in 16ms (Views: 15.7ms)
|
52
52
|
|
53
53
|
|
54
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
54
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
55
55
|
Processing by RolloutUi::FeaturesController#update as HTML
|
56
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
56
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
57
57
|
Redirected to http://www.example.com/rollout/features
|
58
|
-
Completed 302 Found in
|
58
|
+
Completed 302 Found in 2ms
|
59
59
|
|
60
60
|
|
61
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
61
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
62
62
|
Processing by RolloutUi::FeaturesController#index as HTML
|
63
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
64
|
-
Completed 200 OK in
|
63
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (16.9ms)
|
64
|
+
Completed 200 OK in 19ms (Views: 18.3ms)
|
65
65
|
|
66
66
|
|
67
|
-
Started GET "/rollout" for 127.0.0.1 at
|
67
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
68
68
|
Processing by RolloutUi::FeaturesController#index as HTML
|
69
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
70
|
-
Completed 200 OK in
|
69
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.3ms)
|
70
|
+
Completed 200 OK in 16ms (Views: 15.6ms)
|
71
71
|
|
72
72
|
|
73
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
73
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
74
74
|
Processing by RolloutUi::FeaturesController#update as HTML
|
75
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
75
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
76
76
|
Redirected to http://www.example.com/rollout/features
|
77
77
|
Completed 302 Found in 1ms
|
78
78
|
|
79
79
|
|
80
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
80
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
81
81
|
Processing by RolloutUi::FeaturesController#index as HTML
|
82
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
83
|
-
Completed 200 OK in
|
82
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.8ms)
|
83
|
+
Completed 200 OK in 16ms (Views: 15.9ms)
|
84
84
|
|
85
85
|
|
86
|
-
Started GET "/rollout" for 127.0.0.1 at
|
86
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
87
87
|
Processing by RolloutUi::FeaturesController#index as HTML
|
88
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.
|
89
|
-
Completed 200 OK in
|
88
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.7ms)
|
89
|
+
Completed 200 OK in 16ms (Views: 15.9ms)
|
90
90
|
|
91
91
|
|
92
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
92
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
93
93
|
Processing by RolloutUi::FeaturesController#update as HTML
|
94
|
-
Parameters: {"utf8"=>"
|
94
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
95
95
|
Redirected to http://www.example.com/rollout/features
|
96
96
|
Completed 302 Found in 1ms
|
97
97
|
|
98
98
|
|
99
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
99
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
100
100
|
Processing by RolloutUi::FeaturesController#index as HTML
|
101
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (18.
|
102
|
-
Completed 200 OK in
|
101
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (18.0ms)
|
102
|
+
Completed 200 OK in 19ms (Views: 19.1ms)
|
103
103
|
|
104
104
|
|
105
|
-
Started GET "/rollout" for 127.0.0.1 at
|
105
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
106
106
|
Processing by RolloutUi::FeaturesController#index as HTML
|
107
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
108
|
-
Completed 200 OK in
|
107
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.6ms)
|
108
|
+
Completed 200 OK in 17ms (Views: 16.2ms)
|
109
109
|
|
110
110
|
|
111
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
111
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
112
112
|
Processing by RolloutUi::FeaturesController#update as HTML
|
113
|
-
Parameters: {"utf8"=>"
|
113
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
114
114
|
Redirected to http://www.example.com/rollout/features
|
115
115
|
Completed 302 Found in 1ms
|
116
116
|
|
117
117
|
|
118
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
118
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
119
119
|
Processing by RolloutUi::FeaturesController#index as HTML
|
120
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
121
|
-
Completed 200 OK in
|
120
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.1ms)
|
121
|
+
Completed 200 OK in 15ms (Views: 15.1ms)
|
122
|
+
|
123
|
+
|
124
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:23:28 -0500
|
125
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
126
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.2ms)
|
127
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.5ms)
|
128
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (33.6ms)
|
129
|
+
Completed 200 OK in 65ms (Views: 64.9ms)
|
130
|
+
|
131
|
+
|
132
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:55:45 -0500
|
133
|
+
|
134
|
+
|
135
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:55:45 -0500
|
136
|
+
|
137
|
+
|
138
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:55:45 -0500
|
139
|
+
|
140
|
+
|
141
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:55:45 -0500
|
142
|
+
|
143
|
+
|
144
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:55:45 -0500
|
145
|
+
|
146
|
+
|
147
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:55:45 -0500
|
148
|
+
|
149
|
+
|
150
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:55:45 -0500
|
151
|
+
|
152
|
+
|
153
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:55:45 -0500
|
154
|
+
|
155
|
+
|
156
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:58:29 -0500
|
157
|
+
|
158
|
+
|
159
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:58:29 -0500
|
160
|
+
|
161
|
+
|
162
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:58:29 -0500
|
163
|
+
|
164
|
+
|
165
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:58:29 -0500
|
166
|
+
|
167
|
+
|
168
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:58:29 -0500
|
169
|
+
|
170
|
+
|
171
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:58:29 -0500
|
172
|
+
|
173
|
+
|
174
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:58:29 -0500
|
175
|
+
|
176
|
+
|
177
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:58:29 -0500
|
178
|
+
|
179
|
+
|
180
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:59:57 -0500
|
181
|
+
|
182
|
+
|
183
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:59:57 -0500
|
122
184
|
|
123
185
|
|
124
|
-
Started GET "/rollout" for 127.0.0.1 at
|
186
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:59:57 -0500
|
187
|
+
|
188
|
+
|
189
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:59:57 -0500
|
190
|
+
|
191
|
+
|
192
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:59:57 -0500
|
193
|
+
|
194
|
+
|
195
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:59:57 -0500
|
196
|
+
|
197
|
+
|
198
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:59:57 -0500
|
199
|
+
|
200
|
+
|
201
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 14:59:57 -0500
|
202
|
+
|
203
|
+
|
204
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:01:53 -0500
|
125
205
|
Processing by RolloutUi::FeaturesController#index as HTML
|
126
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
127
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb within layouts/rollout_ui/application (
|
128
|
-
Completed 200 OK in
|
206
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.1ms)
|
207
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb within layouts/rollout_ui/application (18.2ms)
|
208
|
+
Completed 200 OK in 28ms (Views: 27.1ms)
|
129
209
|
|
130
210
|
|
131
|
-
Started GET "/rollout" for 127.0.0.1 at
|
211
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:01:53 -0500
|
132
212
|
Processing by RolloutUi::FeaturesController#index as HTML
|
133
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
134
|
-
Completed 200 OK in
|
213
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (13.8ms)
|
214
|
+
Completed 200 OK in 15ms (Views: 15.0ms)
|
135
215
|
|
136
216
|
|
137
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
217
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
138
218
|
Processing by RolloutUi::FeaturesController#update as HTML
|
139
|
-
Parameters: {"utf8"=>"
|
219
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"100", "id"=>"featureA"}
|
140
220
|
Redirected to http://www.example.com/rollout/features
|
141
221
|
Completed 302 Found in 1ms
|
142
222
|
|
143
223
|
|
144
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
224
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
145
225
|
Processing by RolloutUi::FeaturesController#index as HTML
|
146
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
147
|
-
Completed 200 OK in
|
226
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (13.9ms)
|
227
|
+
Completed 200 OK in 15ms (Views: 15.1ms)
|
148
228
|
|
149
229
|
|
150
|
-
Started GET "/rollout" for 127.0.0.1 at
|
230
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
151
231
|
Processing by RolloutUi::FeaturesController#index as HTML
|
152
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
153
|
-
Completed 200 OK in
|
232
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.4ms)
|
233
|
+
Completed 200 OK in 16ms (Views: 15.6ms)
|
154
234
|
|
155
235
|
|
156
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
236
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
157
237
|
Processing by RolloutUi::FeaturesController#update as HTML
|
158
|
-
Parameters: {"utf8"=>"
|
238
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"57", "id"=>"featureA"}
|
159
239
|
Redirected to http://www.example.com/rollout/features
|
160
240
|
Completed 302 Found in 1ms
|
161
241
|
|
162
242
|
|
163
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
243
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
164
244
|
Processing by RolloutUi::FeaturesController#index as HTML
|
165
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
166
|
-
Completed 200 OK in
|
245
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.2ms)
|
246
|
+
Completed 200 OK in 17ms (Views: 16.3ms)
|
167
247
|
|
168
248
|
|
169
|
-
Started GET "/rollout" for 127.0.0.1 at
|
249
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
170
250
|
Processing by RolloutUi::FeaturesController#index as HTML
|
171
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
172
|
-
Completed 200 OK in
|
251
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.3ms)
|
252
|
+
Completed 200 OK in 16ms (Views: 15.6ms)
|
173
253
|
|
174
254
|
|
175
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
255
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
176
256
|
Processing by RolloutUi::FeaturesController#update as HTML
|
177
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
257
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
178
258
|
Redirected to http://www.example.com/rollout/features
|
179
259
|
Completed 302 Found in 1ms
|
180
260
|
|
181
261
|
|
182
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
262
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
183
263
|
Processing by RolloutUi::FeaturesController#index as HTML
|
184
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
185
|
-
Completed 200 OK in
|
264
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (36.1ms)
|
265
|
+
Completed 200 OK in 38ms (Views: 37.4ms)
|
186
266
|
|
187
267
|
|
188
|
-
Started GET "/rollout" for 127.0.0.1 at
|
268
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
189
269
|
Processing by RolloutUi::FeaturesController#index as HTML
|
190
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
191
|
-
Completed 200 OK in
|
270
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (13.0ms)
|
271
|
+
Completed 200 OK in 15ms (Views: 14.3ms)
|
192
272
|
|
193
273
|
|
194
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
274
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
195
275
|
Processing by RolloutUi::FeaturesController#update as HTML
|
196
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
276
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
197
277
|
Redirected to http://www.example.com/rollout/features
|
198
278
|
Completed 302 Found in 1ms
|
199
279
|
|
200
280
|
|
201
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
281
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
202
282
|
Processing by RolloutUi::FeaturesController#index as HTML
|
203
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
204
|
-
Completed 200 OK in
|
283
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.4ms)
|
284
|
+
Completed 200 OK in 16ms (Views: 15.6ms)
|
205
285
|
|
206
286
|
|
207
|
-
Started GET "/rollout" for 127.0.0.1 at
|
287
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
208
288
|
Processing by RolloutUi::FeaturesController#index as HTML
|
209
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
210
|
-
Completed 200 OK in
|
289
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (13.9ms)
|
290
|
+
Completed 200 OK in 15ms (Views: 15.2ms)
|
211
291
|
|
212
292
|
|
213
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
293
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
214
294
|
Processing by RolloutUi::FeaturesController#update as HTML
|
215
|
-
Parameters: {"utf8"=>"
|
295
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
216
296
|
Redirected to http://www.example.com/rollout/features
|
217
297
|
Completed 302 Found in 1ms
|
218
298
|
|
219
299
|
|
220
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
300
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
221
301
|
Processing by RolloutUi::FeaturesController#index as HTML
|
222
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
223
|
-
Completed 200 OK in
|
302
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.0ms)
|
303
|
+
Completed 200 OK in 15ms (Views: 15.0ms)
|
224
304
|
|
225
305
|
|
226
|
-
Started GET "/rollout" for 127.0.0.1 at
|
306
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
227
307
|
Processing by RolloutUi::FeaturesController#index as HTML
|
228
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
229
|
-
Completed 200 OK in
|
308
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.5ms)
|
309
|
+
Completed 200 OK in 16ms (Views: 15.8ms)
|
230
310
|
|
231
311
|
|
232
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
312
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
233
313
|
Processing by RolloutUi::FeaturesController#update as HTML
|
234
|
-
Parameters: {"utf8"=>"
|
314
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
235
315
|
Redirected to http://www.example.com/rollout/features
|
236
316
|
Completed 302 Found in 1ms
|
237
317
|
|
238
318
|
|
239
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
319
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
240
320
|
Processing by RolloutUi::FeaturesController#index as HTML
|
241
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
242
|
-
Completed 200 OK in
|
321
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (33.0ms)
|
322
|
+
Completed 200 OK in 34ms (Views: 34.1ms)
|
243
323
|
|
244
324
|
|
245
|
-
Started GET "/rollout" for 127.0.0.1 at
|
325
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:01:54 -0500
|
246
326
|
Processing by RolloutUi::FeaturesController#index as HTML
|
247
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
248
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/
|
249
|
-
|
327
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.9ms)
|
328
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (12.8ms)
|
329
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.7ms)
|
330
|
+
Completed 200 OK in 46ms (Views: 45.5ms)
|
331
|
+
|
332
|
+
|
333
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:06 -0500
|
334
|
+
|
335
|
+
|
336
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:06 -0500
|
337
|
+
|
338
|
+
|
339
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:06 -0500
|
340
|
+
|
341
|
+
|
342
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:06 -0500
|
250
343
|
|
251
344
|
|
252
|
-
Started GET "/rollout" for 127.0.0.1 at
|
345
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:06 -0500
|
346
|
+
|
347
|
+
|
348
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:06 -0500
|
349
|
+
|
350
|
+
|
351
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:06 -0500
|
352
|
+
|
353
|
+
|
354
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:07 -0500
|
355
|
+
|
356
|
+
|
357
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:32 -0500
|
358
|
+
|
359
|
+
|
360
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:32 -0500
|
361
|
+
|
362
|
+
|
363
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:32 -0500
|
364
|
+
|
365
|
+
|
366
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:32 -0500
|
367
|
+
|
368
|
+
|
369
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:32 -0500
|
370
|
+
|
371
|
+
|
372
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:32 -0500
|
373
|
+
|
374
|
+
|
375
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:32 -0500
|
376
|
+
|
377
|
+
|
378
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:02:32 -0500
|
379
|
+
|
380
|
+
|
381
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
253
382
|
Processing by RolloutUi::FeaturesController#index as HTML
|
254
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (17.
|
255
|
-
|
383
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (17.7ms)
|
384
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb within layouts/rollout_ui/application (21.2ms)
|
385
|
+
Completed 200 OK in 29ms (Views: 29.0ms)
|
256
386
|
|
257
387
|
|
258
|
-
Started
|
388
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
389
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
390
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.2ms)
|
391
|
+
Completed 200 OK in 16ms (Views: 15.3ms)
|
392
|
+
|
393
|
+
|
394
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
259
395
|
Processing by RolloutUi::FeaturesController#update as HTML
|
260
|
-
Parameters: {"utf8"=>"
|
396
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"100", "id"=>"featureA"}
|
261
397
|
Redirected to http://www.example.com/rollout/features
|
262
398
|
Completed 302 Found in 1ms
|
263
399
|
|
264
400
|
|
265
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
401
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
266
402
|
Processing by RolloutUi::FeaturesController#index as HTML
|
267
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
268
|
-
Completed 200 OK in
|
403
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.1ms)
|
404
|
+
Completed 200 OK in 17ms (Views: 16.2ms)
|
269
405
|
|
270
406
|
|
271
|
-
Started GET "/rollout" for 127.0.0.1 at
|
407
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
272
408
|
Processing by RolloutUi::FeaturesController#index as HTML
|
273
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
274
|
-
Completed 200 OK in
|
409
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.5ms)
|
410
|
+
Completed 200 OK in 16ms (Views: 15.7ms)
|
275
411
|
|
276
412
|
|
277
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
413
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
278
414
|
Processing by RolloutUi::FeaturesController#update as HTML
|
279
|
-
Parameters: {"utf8"=>"
|
415
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"57", "id"=>"featureA"}
|
280
416
|
Redirected to http://www.example.com/rollout/features
|
281
417
|
Completed 302 Found in 1ms
|
282
418
|
|
283
419
|
|
284
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
420
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
285
421
|
Processing by RolloutUi::FeaturesController#index as HTML
|
286
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
287
|
-
Completed 200 OK in
|
422
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.3ms)
|
423
|
+
Completed 200 OK in 16ms (Views: 15.3ms)
|
288
424
|
|
289
425
|
|
290
|
-
Started GET "/rollout" for 127.0.0.1 at
|
426
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
291
427
|
Processing by RolloutUi::FeaturesController#index as HTML
|
292
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
293
|
-
Completed 200 OK in
|
428
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (13.9ms)
|
429
|
+
Completed 200 OK in 15ms (Views: 15.0ms)
|
294
430
|
|
295
431
|
|
296
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
432
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
297
433
|
Processing by RolloutUi::FeaturesController#update as HTML
|
298
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
434
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
299
435
|
Redirected to http://www.example.com/rollout/features
|
300
|
-
Completed 302 Found in
|
436
|
+
Completed 302 Found in 1ms
|
301
437
|
|
302
438
|
|
303
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
439
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
304
440
|
Processing by RolloutUi::FeaturesController#index as HTML
|
305
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
306
|
-
Completed 200 OK in
|
441
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (18.8ms)
|
442
|
+
Completed 200 OK in 21ms (Views: 20.5ms)
|
307
443
|
|
308
444
|
|
309
|
-
Started GET "/rollout" for 127.0.0.1 at
|
445
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
310
446
|
Processing by RolloutUi::FeaturesController#index as HTML
|
311
447
|
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (17.2ms)
|
312
|
-
Completed 200 OK in
|
448
|
+
Completed 200 OK in 19ms (Views: 19.0ms)
|
313
449
|
|
314
450
|
|
315
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
451
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
316
452
|
Processing by RolloutUi::FeaturesController#update as HTML
|
317
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
453
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
318
454
|
Redirected to http://www.example.com/rollout/features
|
319
455
|
Completed 302 Found in 1ms
|
320
456
|
|
321
457
|
|
322
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
458
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
323
459
|
Processing by RolloutUi::FeaturesController#index as HTML
|
324
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (19.
|
325
|
-
Completed 200 OK in
|
460
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (19.5ms)
|
461
|
+
Completed 200 OK in 21ms (Views: 20.9ms)
|
326
462
|
|
327
463
|
|
328
|
-
Started GET "/rollout" for 127.0.0.1 at
|
464
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
329
465
|
Processing by RolloutUi::FeaturesController#index as HTML
|
330
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
331
|
-
Completed 200 OK in
|
466
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (16.4ms)
|
467
|
+
Completed 200 OK in 18ms (Views: 18.0ms)
|
332
468
|
|
333
469
|
|
334
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
470
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
335
471
|
Processing by RolloutUi::FeaturesController#update as HTML
|
336
|
-
Parameters: {"utf8"=>"
|
472
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
337
473
|
Redirected to http://www.example.com/rollout/features
|
338
474
|
Completed 302 Found in 1ms
|
339
475
|
|
340
476
|
|
341
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
477
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
342
478
|
Processing by RolloutUi::FeaturesController#index as HTML
|
343
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
344
|
-
Completed 200 OK in
|
479
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.8ms)
|
480
|
+
Completed 200 OK in 16ms (Views: 16.1ms)
|
345
481
|
|
346
482
|
|
347
|
-
Started GET "/rollout" for 127.0.0.1 at
|
483
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
348
484
|
Processing by RolloutUi::FeaturesController#index as HTML
|
349
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
350
|
-
Completed 200 OK in
|
485
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.6ms)
|
486
|
+
Completed 200 OK in 16ms (Views: 16.0ms)
|
351
487
|
|
352
488
|
|
353
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
489
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
354
490
|
Processing by RolloutUi::FeaturesController#update as HTML
|
355
|
-
Parameters: {"utf8"=>"
|
491
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
356
492
|
Redirected to http://www.example.com/rollout/features
|
357
493
|
Completed 302 Found in 1ms
|
358
494
|
|
359
495
|
|
360
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
496
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
361
497
|
Processing by RolloutUi::FeaturesController#index as HTML
|
362
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
363
|
-
Completed 200 OK in
|
498
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.7ms)
|
499
|
+
Completed 200 OK in 18ms (Views: 17.1ms)
|
364
500
|
|
365
501
|
|
366
|
-
Started GET "/rollout" for 127.0.0.1 at
|
502
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:05:19 -0500
|
367
503
|
Processing by RolloutUi::FeaturesController#index as HTML
|
368
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
369
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/
|
370
|
-
|
504
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.9ms)
|
505
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.1ms)
|
506
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (33.9ms)
|
507
|
+
Completed 200 OK in 66ms (Views: 66.0ms)
|
371
508
|
|
372
509
|
|
373
|
-
Started GET "/rollout" for 127.0.0.1 at
|
510
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
374
511
|
Processing by RolloutUi::FeaturesController#index as HTML
|
375
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
376
|
-
|
512
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.8ms)
|
513
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb within layouts/rollout_ui/application (17.9ms)
|
514
|
+
Completed 200 OK in 27ms (Views: 26.4ms)
|
515
|
+
|
516
|
+
|
517
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
518
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
519
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.5ms)
|
520
|
+
Completed 200 OK in 16ms (Views: 15.8ms)
|
377
521
|
|
378
522
|
|
379
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
523
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
380
524
|
Processing by RolloutUi::FeaturesController#update as HTML
|
381
|
-
Parameters: {"utf8"=>"
|
525
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"100", "id"=>"featureA"}
|
382
526
|
Redirected to http://www.example.com/rollout/features
|
383
527
|
Completed 302 Found in 1ms
|
384
528
|
|
385
529
|
|
386
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
530
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
387
531
|
Processing by RolloutUi::FeaturesController#index as HTML
|
388
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
389
|
-
Completed 200 OK in
|
532
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.6ms)
|
533
|
+
Completed 200 OK in 17ms (Views: 16.8ms)
|
390
534
|
|
391
535
|
|
392
|
-
Started GET "/rollout" for 127.0.0.1 at
|
536
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
393
537
|
Processing by RolloutUi::FeaturesController#index as HTML
|
394
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
395
|
-
Completed 200 OK in
|
538
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.7ms)
|
539
|
+
Completed 200 OK in 16ms (Views: 16.0ms)
|
396
540
|
|
397
541
|
|
398
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
542
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
399
543
|
Processing by RolloutUi::FeaturesController#update as HTML
|
400
|
-
Parameters: {"utf8"=>"
|
544
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"57", "id"=>"featureA"}
|
401
545
|
Redirected to http://www.example.com/rollout/features
|
402
546
|
Completed 302 Found in 1ms
|
403
547
|
|
404
548
|
|
405
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
549
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
406
550
|
Processing by RolloutUi::FeaturesController#index as HTML
|
407
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
408
|
-
Completed 200 OK in
|
551
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.6ms)
|
552
|
+
Completed 200 OK in 16ms (Views: 15.5ms)
|
409
553
|
|
410
554
|
|
411
|
-
Started GET "/rollout" for 127.0.0.1 at
|
555
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
412
556
|
Processing by RolloutUi::FeaturesController#index as HTML
|
413
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
414
|
-
Completed 200 OK in
|
557
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (12.9ms)
|
558
|
+
Completed 200 OK in 15ms (Views: 14.3ms)
|
415
559
|
|
416
560
|
|
417
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
561
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
418
562
|
Processing by RolloutUi::FeaturesController#update as HTML
|
419
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
563
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
420
564
|
Redirected to http://www.example.com/rollout/features
|
421
|
-
Completed 302 Found in
|
565
|
+
Completed 302 Found in 1ms
|
422
566
|
|
423
567
|
|
424
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
568
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
425
569
|
Processing by RolloutUi::FeaturesController#index as HTML
|
426
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
427
|
-
Completed 200 OK in
|
570
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.2ms)
|
571
|
+
Completed 200 OK in 16ms (Views: 15.5ms)
|
428
572
|
|
429
573
|
|
430
|
-
Started GET "/rollout" for 127.0.0.1 at
|
574
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
431
575
|
Processing by RolloutUi::FeaturesController#index as HTML
|
432
576
|
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (16.7ms)
|
433
|
-
Completed 200 OK in 19ms (Views: 18.
|
577
|
+
Completed 200 OK in 19ms (Views: 18.3ms)
|
434
578
|
|
435
579
|
|
436
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
580
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
437
581
|
Processing by RolloutUi::FeaturesController#update as HTML
|
438
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
582
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
439
583
|
Redirected to http://www.example.com/rollout/features
|
440
584
|
Completed 302 Found in 1ms
|
441
585
|
|
442
586
|
|
443
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
587
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
444
588
|
Processing by RolloutUi::FeaturesController#index as HTML
|
445
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
446
|
-
Completed 200 OK in
|
589
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.0ms)
|
590
|
+
Completed 200 OK in 16ms (Views: 16.0ms)
|
447
591
|
|
448
592
|
|
449
|
-
Started GET "/rollout" for 127.0.0.1 at
|
593
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
450
594
|
Processing by RolloutUi::FeaturesController#index as HTML
|
451
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
452
|
-
Completed 200 OK in
|
595
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.2ms)
|
596
|
+
Completed 200 OK in 16ms (Views: 15.5ms)
|
453
597
|
|
454
598
|
|
455
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
599
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
456
600
|
Processing by RolloutUi::FeaturesController#update as HTML
|
457
|
-
Parameters: {"utf8"=>"
|
601
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
458
602
|
Redirected to http://www.example.com/rollout/features
|
459
603
|
Completed 302 Found in 1ms
|
460
604
|
|
461
605
|
|
462
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
606
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
463
607
|
Processing by RolloutUi::FeaturesController#index as HTML
|
464
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
465
|
-
Completed 200 OK in
|
608
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.4ms)
|
609
|
+
Completed 200 OK in 17ms (Views: 16.4ms)
|
466
610
|
|
467
611
|
|
468
|
-
Started GET "/rollout" for 127.0.0.1 at
|
612
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
469
613
|
Processing by RolloutUi::FeaturesController#index as HTML
|
470
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
471
|
-
Completed 200 OK in
|
614
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.7ms)
|
615
|
+
Completed 200 OK in 16ms (Views: 15.9ms)
|
472
616
|
|
473
617
|
|
474
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
618
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
475
619
|
Processing by RolloutUi::FeaturesController#update as HTML
|
476
|
-
Parameters: {"utf8"=>"
|
620
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
477
621
|
Redirected to http://www.example.com/rollout/features
|
478
622
|
Completed 302 Found in 1ms
|
479
623
|
|
480
624
|
|
481
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
625
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
482
626
|
Processing by RolloutUi::FeaturesController#index as HTML
|
483
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
484
|
-
Completed 200 OK in
|
627
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.6ms)
|
628
|
+
Completed 200 OK in 16ms (Views: 15.7ms)
|
485
629
|
|
486
630
|
|
487
|
-
Started GET "/rollout" for 127.0.0.1 at
|
631
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:08:07 -0500
|
488
632
|
Processing by RolloutUi::FeaturesController#index as HTML
|
489
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
490
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/
|
491
|
-
|
633
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.2ms)
|
634
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.0ms)
|
635
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (34.1ms)
|
636
|
+
Completed 200 OK in 65ms (Views: 64.5ms)
|
492
637
|
|
493
638
|
|
494
|
-
Started GET "/rollout" for 127.0.0.1 at
|
639
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
495
640
|
Processing by RolloutUi::FeaturesController#index as HTML
|
496
641
|
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.4ms)
|
497
|
-
|
642
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb within layouts/rollout_ui/application (19.3ms)
|
643
|
+
Completed 200 OK in 29ms (Views: 28.2ms)
|
498
644
|
|
499
645
|
|
500
|
-
Started
|
646
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
647
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
648
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (13.3ms)
|
649
|
+
Completed 200 OK in 15ms (Views: 14.5ms)
|
650
|
+
|
651
|
+
|
652
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
501
653
|
Processing by RolloutUi::FeaturesController#update as HTML
|
502
|
-
Parameters: {"utf8"=>"
|
654
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"100", "id"=>"featureA"}
|
503
655
|
Redirected to http://www.example.com/rollout/features
|
504
656
|
Completed 302 Found in 1ms
|
505
657
|
|
506
658
|
|
507
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
659
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
508
660
|
Processing by RolloutUi::FeaturesController#index as HTML
|
509
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
510
|
-
Completed 200 OK in
|
661
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.1ms)
|
662
|
+
Completed 200 OK in 16ms (Views: 16.2ms)
|
511
663
|
|
512
664
|
|
513
|
-
Started GET "/rollout" for 127.0.0.1 at
|
665
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
514
666
|
Processing by RolloutUi::FeaturesController#index as HTML
|
515
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
516
|
-
Completed 200 OK in
|
667
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.2ms)
|
668
|
+
Completed 200 OK in 16ms (Views: 15.3ms)
|
517
669
|
|
518
670
|
|
519
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
671
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
520
672
|
Processing by RolloutUi::FeaturesController#update as HTML
|
521
|
-
Parameters: {"utf8"=>"
|
673
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"57", "id"=>"featureA"}
|
522
674
|
Redirected to http://www.example.com/rollout/features
|
523
675
|
Completed 302 Found in 1ms
|
524
676
|
|
525
677
|
|
526
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
678
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
527
679
|
Processing by RolloutUi::FeaturesController#index as HTML
|
528
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
529
|
-
Completed 200 OK in
|
680
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.1ms)
|
681
|
+
Completed 200 OK in 15ms (Views: 15.0ms)
|
530
682
|
|
531
683
|
|
532
|
-
Started GET "/rollout" for 127.0.0.1 at
|
684
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
533
685
|
Processing by RolloutUi::FeaturesController#index as HTML
|
534
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
535
|
-
Completed 200 OK in 19ms (Views:
|
686
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.7ms)
|
687
|
+
Completed 200 OK in 19ms (Views: 17.3ms)
|
536
688
|
|
537
689
|
|
538
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
690
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
539
691
|
Processing by RolloutUi::FeaturesController#update as HTML
|
540
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
692
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
541
693
|
Redirected to http://www.example.com/rollout/features
|
542
694
|
Completed 302 Found in 1ms
|
543
695
|
|
544
696
|
|
545
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
697
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
546
698
|
Processing by RolloutUi::FeaturesController#index as HTML
|
547
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
548
|
-
Completed 200 OK in
|
699
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.7ms)
|
700
|
+
Completed 200 OK in 16ms (Views: 15.9ms)
|
549
701
|
|
550
702
|
|
551
|
-
Started GET "/rollout" for 127.0.0.1 at
|
703
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
552
704
|
Processing by RolloutUi::FeaturesController#index as HTML
|
553
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
554
|
-
Completed 200 OK in
|
705
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.5ms)
|
706
|
+
Completed 200 OK in 16ms (Views: 15.9ms)
|
555
707
|
|
556
708
|
|
557
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
709
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
558
710
|
Processing by RolloutUi::FeaturesController#update as HTML
|
559
|
-
Parameters: {"groups"=>["beta_testers", ""], "
|
711
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
560
712
|
Redirected to http://www.example.com/rollout/features
|
561
713
|
Completed 302 Found in 1ms
|
562
714
|
|
563
715
|
|
564
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
716
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
565
717
|
Processing by RolloutUi::FeaturesController#index as HTML
|
566
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
567
|
-
Completed 200 OK in
|
718
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (13.9ms)
|
719
|
+
Completed 200 OK in 15ms (Views: 14.9ms)
|
568
720
|
|
569
721
|
|
570
|
-
Started GET "/rollout" for 127.0.0.1 at
|
722
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
571
723
|
Processing by RolloutUi::FeaturesController#index as HTML
|
572
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
573
|
-
Completed 200 OK in
|
724
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.4ms)
|
725
|
+
Completed 200 OK in 16ms (Views: 15.7ms)
|
574
726
|
|
575
727
|
|
576
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
728
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
577
729
|
Processing by RolloutUi::FeaturesController#update as HTML
|
578
|
-
Parameters: {"utf8"=>"
|
730
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
579
731
|
Redirected to http://www.example.com/rollout/features
|
580
732
|
Completed 302 Found in 1ms
|
581
733
|
|
582
734
|
|
583
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
735
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
584
736
|
Processing by RolloutUi::FeaturesController#index as HTML
|
585
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
586
|
-
Completed 200 OK in
|
737
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (13.8ms)
|
738
|
+
Completed 200 OK in 15ms (Views: 15.1ms)
|
587
739
|
|
588
740
|
|
589
|
-
Started GET "/rollout" for 127.0.0.1 at
|
741
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
590
742
|
Processing by RolloutUi::FeaturesController#index as HTML
|
591
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
592
|
-
Completed 200 OK in
|
743
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.3ms)
|
744
|
+
Completed 200 OK in 16ms (Views: 15.5ms)
|
593
745
|
|
594
746
|
|
595
|
-
Started PUT "/rollout/features/featureA" for 127.0.0.1 at
|
747
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
596
748
|
Processing by RolloutUi::FeaturesController#update as HTML
|
597
|
-
Parameters: {"utf8"=>"
|
749
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
598
750
|
Redirected to http://www.example.com/rollout/features
|
599
751
|
Completed 302 Found in 1ms
|
600
752
|
|
601
753
|
|
602
|
-
Started GET "/rollout/features" for 127.0.0.1 at
|
754
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
755
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
756
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (15.5ms)
|
757
|
+
Completed 200 OK in 17ms (Views: 16.5ms)
|
758
|
+
|
759
|
+
|
760
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-02-22 15:18:29 -0500
|
761
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
762
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (14.1ms)
|
763
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (13.2ms)
|
764
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (31.3ms)
|
765
|
+
Completed 200 OK in 61ms (Views: 60.3ms)
|
766
|
+
|
767
|
+
|
768
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
769
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
770
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.4ms)
|
771
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/index.html.erb within layouts/rollout_ui/application (26.5ms)
|
772
|
+
Completed 200 OK in 36ms (Views: 35.4ms)
|
773
|
+
|
774
|
+
|
775
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
776
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
777
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (36.3ms)
|
778
|
+
Completed 200 OK in 38ms (Views: 37.5ms)
|
779
|
+
|
780
|
+
|
781
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
782
|
+
Processing by RolloutUi::FeaturesController#update as HTML
|
783
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"100", "id"=>"featureA"}
|
784
|
+
Redirected to http://www.example.com/rollout/features
|
785
|
+
Completed 302 Found in 2ms
|
786
|
+
|
787
|
+
|
788
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
789
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
790
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.0ms)
|
791
|
+
Completed 200 OK in 23ms (Views: 23.1ms)
|
792
|
+
|
793
|
+
|
794
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
795
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
796
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.1ms)
|
797
|
+
Completed 200 OK in 24ms (Views: 23.3ms)
|
798
|
+
|
799
|
+
|
800
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
801
|
+
Processing by RolloutUi::FeaturesController#update as HTML
|
802
|
+
Parameters: {"utf8"=>"✓", "percentage"=>"57", "id"=>"featureA"}
|
803
|
+
Redirected to http://www.example.com/rollout/features
|
804
|
+
Completed 302 Found in 1ms
|
805
|
+
|
806
|
+
|
807
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
808
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
809
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (23.6ms)
|
810
|
+
Completed 200 OK in 25ms (Views: 24.5ms)
|
811
|
+
|
812
|
+
|
813
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
814
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
815
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.8ms)
|
816
|
+
Completed 200 OK in 25ms (Views: 24.4ms)
|
817
|
+
|
818
|
+
|
819
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
820
|
+
Processing by RolloutUi::FeaturesController#update as HTML
|
821
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
822
|
+
Redirected to http://www.example.com/rollout/features
|
823
|
+
Completed 302 Found in 1ms
|
824
|
+
|
825
|
+
|
826
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
827
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
828
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (29.9ms)
|
829
|
+
Completed 200 OK in 31ms (Views: 30.9ms)
|
830
|
+
|
831
|
+
|
832
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
833
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
834
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (27.7ms)
|
835
|
+
Completed 200 OK in 30ms (Views: 29.2ms)
|
836
|
+
|
837
|
+
|
838
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
839
|
+
Processing by RolloutUi::FeaturesController#update as HTML
|
840
|
+
Parameters: {"utf8"=>"✓", "groups"=>["beta_testers", ""], "id"=>"featureA"}
|
841
|
+
Redirected to http://www.example.com/rollout/features
|
842
|
+
Completed 302 Found in 2ms
|
843
|
+
|
844
|
+
|
845
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
846
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
847
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (25.1ms)
|
848
|
+
Completed 200 OK in 27ms (Views: 26.5ms)
|
849
|
+
|
850
|
+
|
851
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
852
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
853
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.5ms)
|
854
|
+
Completed 200 OK in 24ms (Views: 23.7ms)
|
855
|
+
|
856
|
+
|
857
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
858
|
+
Processing by RolloutUi::FeaturesController#update as HTML
|
859
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
860
|
+
Redirected to http://www.example.com/rollout/features
|
861
|
+
Completed 302 Found in 1ms
|
862
|
+
|
863
|
+
|
864
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
865
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
866
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (25.1ms)
|
867
|
+
Completed 200 OK in 26ms (Views: 26.2ms)
|
868
|
+
|
869
|
+
|
870
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
871
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
872
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.7ms)
|
873
|
+
Completed 200 OK in 24ms (Views: 23.8ms)
|
874
|
+
|
875
|
+
|
876
|
+
Started PUT "/rollout/features/featureA" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
877
|
+
Processing by RolloutUi::FeaturesController#update as HTML
|
878
|
+
Parameters: {"utf8"=>"✓", "users"=>["5"], "id"=>"featureA"}
|
879
|
+
Redirected to http://www.example.com/rollout/features
|
880
|
+
Completed 302 Found in 1ms
|
881
|
+
|
882
|
+
|
883
|
+
Started GET "/rollout/features" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
884
|
+
Processing by RolloutUi::FeaturesController#index as HTML
|
885
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (23.6ms)
|
886
|
+
Completed 200 OK in 25ms (Views: 24.8ms)
|
887
|
+
|
888
|
+
|
889
|
+
Started GET "/rollout" for 127.0.0.1 at 2013-08-31 22:24:24 -0400
|
603
890
|
Processing by RolloutUi::FeaturesController#index as HTML
|
604
|
-
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (
|
605
|
-
|
891
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.4ms)
|
892
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.6ms)
|
893
|
+
Rendered /web/rollout_ui/lib/rollout_ui/engine/app/views/rollout_ui/features/_feature.html.erb (22.2ms)
|
894
|
+
Completed 200 OK in 69ms (Views: 69.2ms)
|