mobylette 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,11 +4,6 @@ http://tscolari.github.com/mobylette/mobylette_images/mobylette.jpg
4
4
 
5
5
  This gem works by adding the 'mobile' format to your rails application. Whenever a request come from a mobile device, if you have your controller mobile enabled, it shall render the view.mobile.erb instead of the view.html.erb (or haml, or whatever).
6
6
 
7
- This gem is based on the mobile_fu plugin (https://github.com/brendanlim/mobile-fu). Also these pages were very usefull for me:
8
- * http://stackoverflow.com/questions/5126085/ruby-on-rails-mobile-application
9
- * http://www.arctickiwi.com/blog/mobile-enable-your-ruby-on-rails-site-for-small-screens
10
- * http://metautonomo.us/2011/01/05/mobile-devices-and-rails-maintaining-your-sanity/
11
-
12
7
  == How does it work?
13
8
 
14
9
  By adding "respond_to_mobile_requests" in your application_controller (or any other controller), your controllers (or that controller) will understand mobile requests as a new mime type alias "mobile". This will make the controller to search for the .mobile.erb file instead of the .html.erb. Also you will be able to do:
@@ -62,6 +57,15 @@ This would force all views (mobile) to fall back to the html views. You may also
62
57
 
63
58
  respond_to_mobile_requests :fall_back => false
64
59
 
60
+
61
+ == XHR Requests
62
+
63
+ By default the mobile device verification will skip XHR requests, and these will be served as if mobylette wasn't there. You can override this behavior by passing the :skip_xhr_requests => false to the respond_to_mobile_requests call.
64
+
65
+ respond_to_mobile_requests :skip_xhr_requests => false
66
+
67
+ You may need to use this if you are using JQuery mobile or something similar in your application.
68
+
65
69
  == Forcing/Ignoring Mobile Requests
66
70
 
67
71
  You may force your user to aways render the mobile format, or to aways render the default request format (when the request comes from a mobile device). You can use the session var :mobylette_override for doing it:
@@ -105,3 +109,12 @@ this one will force your user_agent to the one specified, allowing you to test m
105
109
  and this one will reset your user_agent to the test default "Rails Testing". You don't need to call this everytime, all your requests by default are "Rails Testing" in your test env.
106
110
 
107
111
  Friendly note: on your tests, call these functions BEFORE you make the request, otherwise they are useless =p
112
+
113
+ == Contributions and Credits
114
+
115
+ This gem is based on the mobile_fu plugin (https://github.com/brendanlim/mobile-fu).
116
+
117
+ Also, these pages were very usefull when creating the gem:
118
+ * http://stackoverflow.com/questions/5126085/ruby-on-rails-mobile-application
119
+ * http://www.arctickiwi.com/blog/mobile-enable-your-ruby-on-rails-site-for-small-screens
120
+ * http://metautonomo.us/2011/01/05/mobile-devices-and-rails-maintaining-your-sanity/
@@ -33,12 +33,24 @@ module Mobylette
33
33
  # to look for that other format, in case there is not a .mobile file for the view.
34
34
  # By default, it will fall back to the format of the original request.
35
35
  # If you don't want fall back at all, pass :fall_back => false
36
+ # * :skip_xhr_requests => true/false
37
+ # By default this is set to true. When a xhr request enters in, it will skip the
38
+ # mobile verification. This will let your ajax calls to work as intended.
39
+ # You may disable this (actually you will have to) if you are using JQuery Mobile, or
40
+ # other js framework that uses ajax. To disable, set :skip_xhr_requests => false
36
41
  #
37
42
  def respond_to_mobile_requests(options = {})
38
43
  return if self.included_modules.include?(Mobylette::Controllers::RespondToMobileRequestsMethods)
39
44
 
40
- cattr_accessor :fall_back_format
41
- self.fall_back_format = options[:fall_back]
45
+ options.reverse_merge!({
46
+ :skip_xhr_requests => true
47
+ })
48
+
49
+ cattr_accessor :mobylette_fall_back_format
50
+ self.mobylette_fall_back_format = options[:fall_back]
51
+
52
+ cattr_accessor :mobylette_skip_xhr_requests
53
+ self.mobylette_skip_xhr_requests = options[:skip_xhr_requests]
42
54
 
43
55
  self.send(:include, Mobylette::Controllers::RespondToMobileRequestsMethods)
44
56
  end
@@ -48,12 +60,14 @@ module Mobylette
48
60
 
49
61
  private
50
62
 
63
+ # :doc:
51
64
  # This helper returns exclusively if the request's user_aget is from a mobile
52
65
  # device or not.
53
66
  def is_mobile_request?
54
67
  request.user_agent.to_s.downcase =~ /#{MOBILE_USER_AGENTS}/
55
68
  end
56
69
 
70
+ # :doc:
57
71
  # This helper returns exclusively if the current format is mobile or not
58
72
  def is_mobile_view?
59
73
  true if (request.format.to_s == "mobile") or (params[:format] == "mobile")
@@ -77,15 +91,24 @@ module Mobylette
77
91
  module InstanceMethods
78
92
  private
79
93
 
94
+ def respond_as_mobile?
95
+ (not request_xhr? and ((session[:mobylette_override] == :force_mobile) or (is_mobile_request?)))
96
+ end
97
+
98
+ def request_xhr?
99
+ self.mobylette_skip_xhr_requests and request.xhr?
100
+ end
101
+
102
+ # :doc:
80
103
  # Changes the request.form to :mobile, when the request is from
81
104
  # a mobile device
82
105
  def handle_mobile
83
106
  return if session[:mobylette_override] == :ignore_mobile
84
- if not request.xhr? and ((session[:mobylette_override] == :force_mobile) or (is_mobile_request?))
107
+ if respond_as_mobile?
85
108
  original_format = request.format.to_sym
86
109
  request.format = :mobile
87
- if self.fall_back_format != false
88
- request.formats << Mime::Type.new((self.fall_back_format if self.fall_back_format) || original_format)
110
+ if self.mobylette_fall_back_format != false
111
+ request.formats << Mime::Type.new(self.mobylette_fall_back_format || original_format)
89
112
  end
90
113
  end
91
114
  end
@@ -1,3 +1,3 @@
1
1
  module Mobylette
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  end
@@ -17,7 +17,6 @@ describe DefaultFallbackController do
17
17
  response.body.should contain("HTML VIEW")
18
18
  end
19
19
 
20
-
21
20
  it "should fall back to the default request format when it doesnt" do
22
21
  force_mobile_request_agent
23
22
  get :test
@@ -31,6 +30,4 @@ describe DefaultFallbackController do
31
30
  response.should render_template(:test)
32
31
  response.body.should contain("JS VIEW")
33
32
  end
34
-
35
-
36
33
  end
@@ -18,102 +18,111 @@ describe HomeController do
18
18
  response.body.should contain("this is the html view")
19
19
  end
20
20
 
21
- it "should have the Rails Testing request type by default" do
22
- get :index
23
- request.user_agent.should == "Rails Testing"
24
- @controller.send(:is_mobile_request?).should be_false
25
- end
26
-
27
- it "should have respond to mobile requests" do
28
- force_mobile_request_agent("Android")
29
- get :index
30
- request.user_agent.should == "Android"
31
- @controller.send(:is_mobile_request?).should be_true
32
- end
33
-
34
- it "reset_test_request_agent should reset the user_agent to Rails Testing" do
35
- force_mobile_request_agent("Iphone")
36
- reset_test_request_agent
37
- get :index
38
- request.user_agent.should == "Rails Testing"
39
- end
40
-
41
- it "should have the mobile mime_type" do
42
- force_mobile_request_agent
43
- get :index
44
- @controller.send(:is_mobile_request?).should be_true
45
- response.body.should contain("this is the mobile view")
46
- end
47
-
48
- it "should render desktop view on non mobile request" do
49
- reset_test_request_agent
50
- get :respond_to_test
51
- response.should render_template(:desktop)
52
- end
53
-
54
- it "should render mobile view on mobile request" do
55
- force_mobile_request_agent("Android")
56
- get :respond_to_test
57
- response.should render_template(:mobile)
58
- end
59
-
60
- it "should render mobile view on mobile request when .mobile" do
61
- get :respond_to_test, :format => "mobile"
62
- response.should render_template(:mobile)
63
- end
64
-
65
- it "should display THIS A MOBILE DEVICE on index from mobile" do
66
- force_mobile_request_agent("Android")
67
- get :index
68
- response.body.should contain("THIS A MOBILE DEVICE")
69
- end
70
-
71
- it "should not display THIS IS NOT A MOBILE DEVICE on index from mobile" do
72
- force_mobile_request_agent("Android")
73
- get :index
74
- response.body.should_not contain("THIS IS NOT A MOBILE DEVICE")
75
- end
76
-
77
- it "should not display THIS A MOBILE DEVICE on index from non mobile" do
78
- reset_test_request_agent
79
- get :index
80
- response.body.should_not contain("THIS A MOBILE DEVICE")
81
- end
82
-
83
- it "should display THIS IS NOT A MOBILE DEVICE on index from non mobile" do
84
- reset_test_request_agent
85
- get :index
86
- response.body.should contain("THIS IS NOT A MOBILE DEVICE")
21
+ describe "is_mobile_request? and force_mobile_request_agent/reset_test_request_agent" do
22
+ it "should have the Rails Testing request type by default" do
23
+ get :index
24
+ request.user_agent.should == "Rails Testing"
25
+ @controller.send(:is_mobile_request?).should be_false
26
+ end
27
+
28
+ it "should have respond to mobile requests" do
29
+ force_mobile_request_agent("Android")
30
+ get :index
31
+ request.user_agent.should == "Android"
32
+ @controller.send(:is_mobile_request?).should be_true
33
+ end
34
+
35
+ it "should render the mobile mime_type" do
36
+ force_mobile_request_agent
37
+ get :index
38
+ @controller.send(:is_mobile_request?).should be_true
39
+ response.body.should contain("this is the mobile view")
40
+ end
41
+
42
+ it "reset_test_request_agent should reset the user_agent to Rails Testing" do
43
+ force_mobile_request_agent("Iphone")
44
+ reset_test_request_agent
45
+ get :index
46
+ @controller.send(:is_mobile_request?).should be_false
47
+ request.user_agent.should == "Rails Testing"
48
+ end
49
+ end
50
+
51
+ describe "render output" do
52
+ it "should display THIS A MOBILE DEVICE on index from mobile" do
53
+ force_mobile_request_agent("Android")
54
+ get :index
55
+ response.body.should contain("THIS A MOBILE DEVICE")
56
+ end
57
+
58
+ it "should not display THIS IS NOT A MOBILE DEVICE on index from mobile" do
59
+ force_mobile_request_agent("Android")
60
+ get :index
61
+ response.body.should_not contain("THIS IS NOT A MOBILE DEVICE")
62
+ end
63
+
64
+ it "should not display THIS A MOBILE DEVICE on index from non mobile" do
65
+ reset_test_request_agent
66
+ get :index
67
+ response.body.should_not contain("THIS A MOBILE DEVICE")
68
+ end
69
+
70
+ it "should display THIS IS NOT A MOBILE DEVICE on index from non mobile" do
71
+ reset_test_request_agent
72
+ get :index
73
+ response.body.should contain("THIS IS NOT A MOBILE DEVICE")
74
+ end
75
+ end
76
+
77
+ describe "respond_to with difference views per request type" do
78
+ it "should render desktop view on non mobile request" do
79
+ reset_test_request_agent
80
+ get :respond_to_test
81
+ response.should render_template(:desktop)
82
+ end
83
+
84
+ it "should render mobile view on mobile request" do
85
+ force_mobile_request_agent("Android")
86
+ get :respond_to_test
87
+ response.should render_template(:mobile)
88
+ end
89
+
90
+ it "should render mobile view on mobile request when .mobile" do
91
+ get :respond_to_test, :format => "mobile"
92
+ response.should render_template(:mobile)
93
+ end
87
94
  end
88
95
 
89
96
  #######################################################
90
97
  # Testing XHR requests
91
- it "should not use mobile format for xhr requests" do
92
- force_mobile_request_agent("Android")
93
- xhr :get, :index
94
- response.should render_template(:index)
95
- response.body.should contain("AJAX VIEW")
98
+ describe "XHR Requests" do
99
+ it "should not use mobile format for xhr requests" do
100
+ force_mobile_request_agent("Android")
101
+ xhr :get, :index
102
+ response.should render_template(:index)
103
+ response.body.should contain("AJAX VIEW")
104
+ end
96
105
  end
97
106
 
98
107
  #######################################################
99
108
  # Testing Session Override
100
-
101
- it "should force mobile view if session says it so" do
102
- reset_test_request_agent
103
- set_session_override(:force_mobile)
104
- get :index
105
- response.should render_template(:index)
106
- response.should contain("this is the mobile view")
107
- response.should contain("THIS IS NOT A MOBILE DEVICE")
109
+ describe "Session Override" do
110
+ it "should force mobile view if session says it so" do
111
+ reset_test_request_agent
112
+ set_session_override(:force_mobile)
113
+ get :index
114
+ response.should render_template(:index)
115
+ response.should contain("this is the mobile view")
116
+ response.should contain("THIS IS NOT A MOBILE DEVICE")
117
+ end
118
+
119
+ it "should ignore mobile view processing if session says it so" do
120
+ force_mobile_request_agent("Android")
121
+ set_session_override(:ignore_mobile)
122
+ get :index
123
+ response.should render_template(:index)
124
+ response.should contain("this is the html view")
125
+ response.should contain("THIS A MOBILE DEVICE")
126
+ end
108
127
  end
109
-
110
- it "should ignore mobile view processing if session says it so" do
111
- force_mobile_request_agent("Android")
112
- set_session_override(:ignore_mobile)
113
- get :index
114
- response.should render_template(:index)
115
- response.should contain("this is the html view")
116
- response.should contain("THIS A MOBILE DEVICE")
117
- end
118
-
119
128
  end
@@ -0,0 +1,94 @@
1
+
2
+
3
+ Started GET "/fallbacks" for 127.0.0.1 at 2011-09-14 20:58:05 -0300
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/fallbacks"):
6
+
7
+
8
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@mobylette/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (18.5ms)
9
+
10
+
11
+ Started GET "/fallbacks/index" for 127.0.0.1 at 2011-09-14 20:58:08 -0300
12
+ Processing by FallbacksController#index as HTML
13
+ Rendered fallbacks/index.html.erb within layouts/application (0.4ms)
14
+ Compiled application.css (9ms) (pid 3007)
15
+ Compiled application.js (2ms) (pid 3007)
16
+ Completed 200 OK in 45ms (Views: 44.8ms)
17
+
18
+
19
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 20:58:08 -0300
20
+ Served asset /application.css - 200 OK (37ms)
21
+
22
+
23
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 20:58:08 -0300
24
+ Served asset /application.js - 200 OK (3ms)
25
+
26
+
27
+ Started GET "/fallbacks/index.mobile" for 127.0.0.1 at 2011-09-14 20:58:16 -0300
28
+ Processing by FallbacksController#index as MOBILE
29
+ Rendered fallbacks/index.mobile.erb within layouts/application (0.3ms)
30
+ Completed 200 OK in 7ms (Views: 6.2ms)
31
+
32
+
33
+ Started GET "/force_fallback/index.mobile" for 127.0.0.1 at 2011-09-14 20:58:36 -0300
34
+ Processing by ForceFallbackController#index as MOBILE
35
+ Rendered force_fallback/index.mobile.erb within layouts/application (0.4ms)
36
+ Completed 200 OK in 6ms (Views: 5.9ms)
37
+
38
+
39
+ Started GET "/default_fallback/index.mobile" for 127.0.0.1 at 2011-09-14 20:58:51 -0300
40
+ Processing by DefaultFallbackController#index as MOBILE
41
+ Rendered default_fallback/index.mobile.erb within layouts/application (0.3ms)
42
+ Completed 200 OK in 7ms (Views: 6.1ms)
43
+
44
+
45
+ Started GET "/default_fallback/test.mobile" for 127.0.0.1 at 2011-09-14 20:59:49 -0300
46
+ Processing by DefaultFallbackController#test as MOBILE
47
+ Completed 500 Internal Server Error in 37ms
48
+
49
+ ActionView::MissingTemplate (Missing template default_fallback/test, application/test with {:handlers=>[:erb, :builder], :formats=>[:mobile], :locale=>[:en, :en]}. Searched in:
50
+ * "/Users/tscolari/Projetos/mobylette/spec/dummy/app/views"
51
+ ):
52
+
53
+
54
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@mobylette/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
55
+
56
+
57
+ Started GET "/force_fallback/test.mobile" for 127.0.0.1 at 2011-09-14 21:00:14 -0300
58
+ Processing by ForceFallbackController#test as MOBILE
59
+ Completed 500 Internal Server Error in 4ms
60
+
61
+ ActionView::MissingTemplate (Missing template force_fallback/test, application/test with {:handlers=>[:erb, :builder], :formats=>[:mobile], :locale=>[:en, :en]}. Searched in:
62
+ * "/Users/tscolari/Projetos/mobylette/spec/dummy/app/views"
63
+ ):
64
+
65
+
66
+ Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@mobylette/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
67
+
68
+
69
+ Started GET "/force_fallback/test" for 192.168.0.196 at 2011-09-14 21:02:37 -0300
70
+ Processing by ForceFallbackController#test as HTML
71
+ Rendered force_fallback/test.js.erb (18.2ms)
72
+ Completed 200 OK in 138ms (Views: 137.3ms)
73
+
74
+
75
+ Started GET "/force_fallback/index" for 192.168.0.196 at 2011-09-14 21:03:18 -0300
76
+ Processing by ForceFallbackController#index as HTML
77
+ Rendered force_fallback/index.mobile.erb within layouts/application (0.3ms)
78
+ Compiled application_mobile.css (15ms) (pid 3110)
79
+ Compiled application_mobile.js (0ms) (pid 3110)
80
+ Completed 200 OK in 34ms (Views: 33.8ms)
81
+
82
+
83
+ Started GET "/assets/application_mobile.css?body=1" for 192.168.0.196 at 2011-09-14 21:03:18 -0300
84
+ Served asset /application_mobile.css - 200 OK (3ms)
85
+
86
+
87
+ Started GET "/assets/application_mobile.js?body=1" for 192.168.0.196 at 2011-09-14 21:03:18 -0300
88
+ Served asset /application_mobile.js - 200 OK (2ms)
89
+
90
+
91
+ Started GET "/force_fallback/test" for 192.168.0.196 at 2011-09-14 21:11:35 -0300
92
+ Processing by ForceFallbackController#test as HTML
93
+ Rendered force_fallback/test.js.erb (20.7ms)
94
+ Completed 200 OK in 38354ms (Views: 158.2ms)
@@ -0,0 +1,803 @@
1
+ Processing by DefaultFallbackController#index as HTML
2
+ Completed 200 OK in 127ms (Views: 126.2ms)
3
+ Processing by DefaultFallbackController#index as HTML
4
+ Completed 200 OK in 3ms (Views: 2.9ms)
5
+ Processing by DefaultFallbackController#test as HTML
6
+ Completed 200 OK in 3ms (Views: 2.5ms)
7
+ Processing by DefaultFallbackController#test as JS
8
+ Completed 200 OK in 48ms (Views: 47.5ms)
9
+ Processing by ForceFallbackController#index as HTML
10
+ Completed 200 OK in 11ms (Views: 10.9ms)
11
+ Processing by ForceFallbackController#index as HTML
12
+ Completed 200 OK in 3ms (Views: 2.6ms)
13
+ Processing by ForceFallbackController#test as HTML
14
+ Completed 200 OK in 3ms (Views: 2.1ms)
15
+ Processing by ForceFallbackController#test as HTML
16
+ Completed 200 OK in 1ms (Views: 0.8ms)
17
+ Processing by ForceFallbackController#test as JS
18
+ Completed 200 OK in 1ms (Views: 0.8ms)
19
+ Processing by HomeController#index as HTML
20
+ Completed 200 OK in 6ms (Views: 5.2ms)
21
+ Processing by HomeController#index as HTML
22
+ Completed 200 OK in 2ms (Views: 1.3ms)
23
+ Processing by HomeController#index as HTML
24
+ Completed 200 OK in 3ms (Views: 2.9ms)
25
+ Processing by HomeController#index as HTML
26
+ Completed 200 OK in 2ms (Views: 1.3ms)
27
+ Processing by HomeController#index as HTML
28
+ Completed 200 OK in 2ms (Views: 1.3ms)
29
+ Processing by HomeController#respond_to_test as HTML
30
+ Completed 200 OK in 3ms (Views: 2.3ms)
31
+ Processing by HomeController#respond_to_test as HTML
32
+ Completed 200 OK in 3ms (Views: 2.4ms)
33
+ Processing by HomeController#respond_to_test as MOBILE
34
+ Completed 200 OK in 1ms (Views: 1.1ms)
35
+ Processing by HomeController#index as HTML
36
+ Completed 200 OK in 2ms (Views: 1.4ms)
37
+ Processing by HomeController#index as HTML
38
+ Completed 200 OK in 2ms (Views: 1.3ms)
39
+ Processing by HomeController#index as HTML
40
+ Completed 200 OK in 2ms (Views: 1.3ms)
41
+ Processing by HomeController#index as HTML
42
+ Completed 200 OK in 2ms (Views: 1.3ms)
43
+ Processing by HomeController#index as JS
44
+ Completed 200 OK in 6ms (Views: 6.2ms)
45
+ Processing by HomeController#index as HTML
46
+ Completed 200 OK in 1ms (Views: 1.3ms)
47
+ Processing by HomeController#index as HTML
48
+ Completed 200 OK in 1ms (Views: 1.3ms)
49
+ Processing by NoFallbackController#index as HTML
50
+ Completed 200 OK in 6ms (Views: 5.5ms)
51
+ Processing by NoFallbackController#index as HTML
52
+ Completed 200 OK in 3ms (Views: 2.6ms)
53
+ Processing by NoFallbackController#test as HTML
54
+ Completed 500 Internal Server Error in 2ms
55
+ Processing by NoFallbackController#test as HTML
56
+ Completed 500 Internal Server Error in 1ms
57
+ Processing by NoFallbackController#test as HTML
58
+ Completed 500 Internal Server Error in 1ms
59
+ Processing by DefaultFallbackController#index as HTML
60
+ Completed 200 OK in 112ms (Views: 111.9ms)
61
+ Processing by DefaultFallbackController#index as HTML
62
+ Completed 200 OK in 3ms (Views: 2.9ms)
63
+ Processing by DefaultFallbackController#test as HTML
64
+ Completed 200 OK in 3ms (Views: 2.3ms)
65
+ Processing by DefaultFallbackController#test as JS
66
+ Completed 200 OK in 40ms (Views: 40.2ms)
67
+ Processing by ForceFallbackController#index as HTML
68
+ Completed 200 OK in 6ms (Views: 5.4ms)
69
+ Processing by ForceFallbackController#index as HTML
70
+ Completed 200 OK in 2ms (Views: 2.3ms)
71
+ Processing by ForceFallbackController#test as HTML
72
+ Completed 200 OK in 2ms (Views: 1.8ms)
73
+ Processing by ForceFallbackController#test as HTML
74
+ Completed 200 OK in 1ms (Views: 0.8ms)
75
+ Processing by ForceFallbackController#test as JS
76
+ Completed 200 OK in 1ms (Views: 0.8ms)
77
+ Processing by HomeController#index as HTML
78
+ Completed 200 OK in 6ms (Views: 5.4ms)
79
+ Processing by HomeController#index as HTML
80
+ Completed 200 OK in 2ms (Views: 1.3ms)
81
+ Processing by HomeController#index as HTML
82
+ Completed 200 OK in 3ms (Views: 2.8ms)
83
+ Processing by HomeController#index as HTML
84
+ Completed 200 OK in 2ms (Views: 1.3ms)
85
+ Processing by HomeController#index as HTML
86
+ Completed 200 OK in 2ms (Views: 1.3ms)
87
+ Processing by HomeController#respond_to_test as HTML
88
+ Completed 200 OK in 3ms (Views: 2.3ms)
89
+ Processing by HomeController#respond_to_test as HTML
90
+ Completed 200 OK in 3ms (Views: 2.2ms)
91
+ Processing by HomeController#respond_to_test as MOBILE
92
+ Completed 200 OK in 1ms (Views: 1.2ms)
93
+ Processing by HomeController#index as HTML
94
+ Completed 200 OK in 2ms (Views: 1.4ms)
95
+ Processing by HomeController#index as HTML
96
+ Completed 200 OK in 2ms (Views: 1.3ms)
97
+ Processing by HomeController#index as HTML
98
+ Completed 200 OK in 2ms (Views: 1.3ms)
99
+ Processing by HomeController#index as HTML
100
+ Completed 200 OK in 2ms (Views: 1.3ms)
101
+ Processing by HomeController#index as JS
102
+ Completed 200 OK in 6ms (Views: 6.2ms)
103
+ Processing by HomeController#index as HTML
104
+ Completed 200 OK in 1ms (Views: 1.3ms)
105
+ Processing by HomeController#index as HTML
106
+ Completed 200 OK in 1ms (Views: 1.3ms)
107
+ Processing by NoFallbackController#index as HTML
108
+ Completed 200 OK in 5ms (Views: 5.0ms)
109
+ Processing by NoFallbackController#index as HTML
110
+ Completed 200 OK in 3ms (Views: 2.3ms)
111
+ Processing by NoFallbackController#test as HTML
112
+ Completed 500 Internal Server Error in 2ms
113
+ Processing by NoFallbackController#test as HTML
114
+ Completed 500 Internal Server Error in 1ms
115
+ Processing by NoFallbackController#test as HTML
116
+ Completed 500 Internal Server Error in 1ms
117
+ Processing by RespondWithController#index as HTML
118
+ Completed 200 OK in 6ms (Views: 5.1ms)
119
+ Processing by RespondWithController#index as HTML
120
+ Completed 200 OK in 2ms (Views: 1.3ms)
121
+ Processing by RespondWithController#index as HTML
122
+ Completed 200 OK in 3ms (Views: 2.8ms)
123
+ Processing by RespondWithController#index as HTML
124
+ Completed 200 OK in 2ms (Views: 1.4ms)
125
+ Processing by RespondWithController#index as HTML
126
+ Completed 200 OK in 2ms (Views: 1.3ms)
127
+ Processing by RespondWithController#index as HTML
128
+ Completed 200 OK in 2ms (Views: 1.4ms)
129
+ Processing by RespondWithController#index as HTML
130
+ Completed 200 OK in 2ms (Views: 1.3ms)
131
+ Processing by RespondWithController#index as HTML
132
+ Completed 200 OK in 2ms (Views: 1.3ms)
133
+ Processing by RespondWithController#index as HTML
134
+ Completed 200 OK in 2ms (Views: 1.3ms)
135
+ Processing by RespondWithController#index as HTML
136
+ Completed 200 OK in 1ms (Views: 1.3ms)
137
+ Processing by RespondWithController#index as HTML
138
+ Completed 200 OK in 1ms (Views: 1.3ms)
139
+ Processing by DefaultFallbackController#index as HTML
140
+ Completed 200 OK in 116ms (Views: 115.8ms)
141
+ Processing by DefaultFallbackController#index as HTML
142
+ Completed 200 OK in 3ms (Views: 2.9ms)
143
+ Processing by DefaultFallbackController#test as HTML
144
+ Completed 200 OK in 3ms (Views: 2.2ms)
145
+ Processing by DefaultFallbackController#test as JS
146
+ Completed 200 OK in 40ms (Views: 40.1ms)
147
+ Processing by ForceFallbackController#index as HTML
148
+ Completed 200 OK in 6ms (Views: 5.3ms)
149
+ Processing by ForceFallbackController#index as HTML
150
+ Completed 200 OK in 2ms (Views: 2.2ms)
151
+ Processing by ForceFallbackController#test as HTML
152
+ Completed 200 OK in 2ms (Views: 1.8ms)
153
+ Processing by ForceFallbackController#test as HTML
154
+ Completed 200 OK in 1ms (Views: 0.8ms)
155
+ Processing by ForceFallbackController#test as JS
156
+ Completed 200 OK in 1ms (Views: 0.7ms)
157
+ Processing by HomeController#index as HTML
158
+ Completed 200 OK in 6ms (Views: 5.3ms)
159
+ Processing by HomeController#index as HTML
160
+ Completed 200 OK in 2ms (Views: 1.3ms)
161
+ Processing by HomeController#index as HTML
162
+ Completed 200 OK in 3ms (Views: 2.8ms)
163
+ Processing by HomeController#index as HTML
164
+ Completed 200 OK in 2ms (Views: 1.3ms)
165
+ Processing by HomeController#index as HTML
166
+ Completed 200 OK in 2ms (Views: 1.3ms)
167
+ Processing by HomeController#respond_to_test as HTML
168
+ Completed 200 OK in 3ms (Views: 2.3ms)
169
+ Processing by HomeController#respond_to_test as HTML
170
+ Completed 200 OK in 3ms (Views: 2.3ms)
171
+ Processing by HomeController#respond_to_test as MOBILE
172
+ Completed 200 OK in 1ms (Views: 1.2ms)
173
+ Processing by HomeController#index as HTML
174
+ Completed 200 OK in 2ms (Views: 1.4ms)
175
+ Processing by HomeController#index as HTML
176
+ Completed 200 OK in 2ms (Views: 1.3ms)
177
+ Processing by HomeController#index as HTML
178
+ Completed 200 OK in 2ms (Views: 1.3ms)
179
+ Processing by HomeController#index as HTML
180
+ Completed 200 OK in 2ms (Views: 1.3ms)
181
+ Processing by HomeController#index as JS
182
+ Completed 200 OK in 6ms (Views: 6.3ms)
183
+ Processing by HomeController#index as HTML
184
+ Completed 200 OK in 1ms (Views: 1.3ms)
185
+ Processing by HomeController#index as HTML
186
+ Completed 200 OK in 1ms (Views: 1.4ms)
187
+ Processing by NoFallbackController#index as HTML
188
+ Completed 200 OK in 5ms (Views: 4.9ms)
189
+ Processing by NoFallbackController#index as HTML
190
+ Completed 200 OK in 2ms (Views: 2.2ms)
191
+ Processing by NoFallbackController#test as HTML
192
+ Completed 500 Internal Server Error in 2ms
193
+ Processing by NoFallbackController#test as HTML
194
+ Completed 500 Internal Server Error in 1ms
195
+ Processing by NoFallbackController#test as HTML
196
+ Completed 500 Internal Server Error in 1ms
197
+ Processing by RespondWithController#index as HTML
198
+ Completed 200 OK in 6ms (Views: 5.6ms)
199
+ Processing by RespondWithController#index as HTML
200
+ Completed 200 OK in 2ms (Views: 1.5ms)
201
+ Processing by RespondWithController#index as HTML
202
+ Completed 200 OK in 3ms (Views: 2.9ms)
203
+ Processing by RespondWithController#index as HTML
204
+ Completed 200 OK in 2ms (Views: 1.4ms)
205
+ Processing by RespondWithController#index as HTML
206
+ Completed 200 OK in 2ms (Views: 1.3ms)
207
+ Processing by RespondWithController#index as HTML
208
+ Completed 200 OK in 2ms (Views: 1.4ms)
209
+ Processing by RespondWithController#index as HTML
210
+ Completed 200 OK in 2ms (Views: 1.3ms)
211
+ Processing by RespondWithController#index as HTML
212
+ Completed 200 OK in 2ms (Views: 1.3ms)
213
+ Processing by RespondWithController#index as HTML
214
+ Completed 200 OK in 2ms (Views: 1.3ms)
215
+ Processing by RespondWithController#index as HTML
216
+ Completed 200 OK in 1ms (Views: 1.3ms)
217
+ Processing by RespondWithController#index as HTML
218
+ Completed 200 OK in 1ms (Views: 1.3ms)
219
+ Processing by DefaultFallbackController#index as HTML
220
+ Completed 200 OK in 118ms (Views: 117.2ms)
221
+ Processing by DefaultFallbackController#index as HTML
222
+ Completed 200 OK in 3ms (Views: 3.0ms)
223
+ Processing by DefaultFallbackController#test as HTML
224
+ Completed 200 OK in 3ms (Views: 2.2ms)
225
+ Processing by DefaultFallbackController#test as JS
226
+ Completed 200 OK in 41ms (Views: 40.6ms)
227
+ Processing by ForceFallbackController#index as HTML
228
+ Completed 200 OK in 6ms (Views: 5.8ms)
229
+ Processing by ForceFallbackController#index as HTML
230
+ Completed 200 OK in 3ms (Views: 2.4ms)
231
+ Processing by ForceFallbackController#test as HTML
232
+ Completed 200 OK in 2ms (Views: 1.7ms)
233
+ Processing by ForceFallbackController#test as HTML
234
+ Completed 200 OK in 1ms (Views: 0.8ms)
235
+ Processing by ForceFallbackController#test as JS
236
+ Completed 200 OK in 1ms (Views: 0.7ms)
237
+ Processing by HomeController#index as HTML
238
+ Completed 200 OK in 6ms (Views: 5.4ms)
239
+ Processing by HomeController#index as HTML
240
+ Completed 200 OK in 2ms (Views: 1.3ms)
241
+ Processing by HomeController#index as HTML
242
+ Completed 200 OK in 3ms (Views: 2.8ms)
243
+ Processing by HomeController#index as HTML
244
+ Completed 200 OK in 2ms (Views: 1.3ms)
245
+ Processing by HomeController#index as HTML
246
+ Completed 200 OK in 2ms (Views: 1.5ms)
247
+ Processing by HomeController#index as HTML
248
+ Completed 200 OK in 2ms (Views: 1.6ms)
249
+ Processing by HomeController#index as HTML
250
+ Completed 200 OK in 2ms (Views: 1.4ms)
251
+ Processing by HomeController#index as HTML
252
+ Completed 200 OK in 2ms (Views: 1.3ms)
253
+ Processing by HomeController#index as HTML
254
+ Completed 200 OK in 2ms (Views: 1.3ms)
255
+ Processing by HomeController#respond_to_test as HTML
256
+ Completed 200 OK in 3ms (Views: 2.5ms)
257
+ Processing by HomeController#respond_to_test as HTML
258
+ Completed 200 OK in 3ms (Views: 2.3ms)
259
+ Processing by HomeController#respond_to_test as MOBILE
260
+ Completed 200 OK in 2ms (Views: 1.2ms)
261
+ Processing by HomeController#index as JS
262
+ Completed 200 OK in 7ms (Views: 6.5ms)
263
+ Processing by HomeController#index as HTML
264
+ Completed 200 OK in 2ms (Views: 1.4ms)
265
+ Processing by HomeController#index as HTML
266
+ Completed 200 OK in 1ms (Views: 1.3ms)
267
+ Processing by NoFallbackController#index as HTML
268
+ Completed 200 OK in 6ms (Views: 5.2ms)
269
+ Processing by NoFallbackController#index as HTML
270
+ Completed 200 OK in 3ms (Views: 2.4ms)
271
+ Processing by NoFallbackController#test as HTML
272
+ Completed 500 Internal Server Error in 2ms
273
+ Processing by NoFallbackController#test as HTML
274
+ Completed 500 Internal Server Error in 1ms
275
+ Processing by NoFallbackController#test as HTML
276
+ Completed 500 Internal Server Error in 1ms
277
+ Processing by DefaultFallbackController#index as HTML
278
+ Completed 200 OK in 112ms (Views: 111.6ms)
279
+ Processing by DefaultFallbackController#index as HTML
280
+ Completed 200 OK in 3ms (Views: 2.9ms)
281
+ Processing by DefaultFallbackController#test as HTML
282
+ Completed 200 OK in 3ms (Views: 2.2ms)
283
+ Processing by DefaultFallbackController#test as JS
284
+ Completed 200 OK in 40ms (Views: 39.7ms)
285
+ Processing by ForceFallbackController#index as HTML
286
+ Completed 200 OK in 6ms (Views: 5.6ms)
287
+ Processing by ForceFallbackController#index as HTML
288
+ Completed 200 OK in 3ms (Views: 2.3ms)
289
+ Processing by ForceFallbackController#test as HTML
290
+ Completed 200 OK in 2ms (Views: 1.8ms)
291
+ Processing by ForceFallbackController#test as HTML
292
+ Completed 200 OK in 1ms (Views: 0.9ms)
293
+ Processing by ForceFallbackController#test as JS
294
+ Completed 200 OK in 1ms (Views: 0.8ms)
295
+ Processing by HomeController#index as HTML
296
+ Completed 200 OK in 8ms (Views: 7.1ms)
297
+ Processing by HomeController#index as HTML
298
+ Completed 200 OK in 2ms (Views: 1.4ms)
299
+ Processing by HomeController#index as HTML
300
+ Completed 200 OK in 3ms (Views: 2.8ms)
301
+ Processing by HomeController#index as HTML
302
+ Completed 200 OK in 2ms (Views: 1.3ms)
303
+ Processing by HomeController#index as HTML
304
+ Completed 200 OK in 2ms (Views: 1.3ms)
305
+ Processing by HomeController#index as HTML
306
+ Completed 200 OK in 2ms (Views: 1.3ms)
307
+ Processing by HomeController#index as HTML
308
+ Completed 200 OK in 2ms (Views: 1.5ms)
309
+ Processing by HomeController#index as HTML
310
+ Completed 200 OK in 2ms (Views: 1.3ms)
311
+ Processing by HomeController#index as HTML
312
+ Completed 200 OK in 2ms (Views: 1.3ms)
313
+ Processing by HomeController#respond_to_test as HTML
314
+ Completed 200 OK in 3ms (Views: 2.3ms)
315
+ Processing by HomeController#respond_to_test as HTML
316
+ Completed 200 OK in 3ms (Views: 2.3ms)
317
+ Processing by HomeController#respond_to_test as MOBILE
318
+ Completed 200 OK in 1ms (Views: 1.2ms)
319
+ Processing by HomeController#index as JS
320
+ Completed 200 OK in 6ms (Views: 6.3ms)
321
+ Processing by HomeController#index as HTML
322
+ Completed 200 OK in 2ms (Views: 1.4ms)
323
+ Processing by HomeController#index as HTML
324
+ Completed 200 OK in 1ms (Views: 1.3ms)
325
+ Processing by NoFallbackController#index as HTML
326
+ Completed 200 OK in 6ms (Views: 5.1ms)
327
+ Processing by NoFallbackController#index as HTML
328
+ Completed 200 OK in 2ms (Views: 2.2ms)
329
+ Processing by NoFallbackController#test as HTML
330
+ Completed 500 Internal Server Error in 2ms
331
+ Processing by NoFallbackController#test as HTML
332
+ Completed 500 Internal Server Error in 1ms
333
+ Processing by NoFallbackController#test as HTML
334
+ Completed 500 Internal Server Error in 1ms
335
+ Processing by DefaultFallbackController#index as HTML
336
+ Completed 200 OK in 134ms (Views: 133.6ms)
337
+ Processing by DefaultFallbackController#index as HTML
338
+ Completed 200 OK in 3ms (Views: 3.0ms)
339
+ Processing by DefaultFallbackController#test as HTML
340
+ Completed 200 OK in 3ms (Views: 2.5ms)
341
+ Processing by DefaultFallbackController#test as JS
342
+ Completed 200 OK in 48ms (Views: 47.3ms)
343
+ Processing by ForceFallbackController#index as HTML
344
+ Completed 200 OK in 14ms (Views: 13.1ms)
345
+ Processing by ForceFallbackController#index as HTML
346
+ Completed 200 OK in 3ms (Views: 2.5ms)
347
+ Processing by ForceFallbackController#test as HTML
348
+ Completed 200 OK in 2ms (Views: 2.0ms)
349
+ Processing by ForceFallbackController#test as HTML
350
+ Completed 200 OK in 1ms (Views: 0.8ms)
351
+ Processing by ForceFallbackController#test as JS
352
+ Completed 200 OK in 1ms (Views: 0.8ms)
353
+ Processing by HomeController#index as HTML
354
+ Completed 200 OK in 6ms (Views: 5.7ms)
355
+ Processing by HomeController#index as HTML
356
+ Completed 200 OK in 2ms (Views: 1.3ms)
357
+ Processing by HomeController#index as HTML
358
+ Completed 200 OK in 3ms (Views: 3.1ms)
359
+ Processing by HomeController#index as HTML
360
+ Completed 200 OK in 2ms (Views: 1.3ms)
361
+ Processing by HomeController#index as HTML
362
+ Completed 200 OK in 2ms (Views: 1.3ms)
363
+ Processing by HomeController#index as HTML
364
+ Completed 200 OK in 2ms (Views: 1.3ms)
365
+ Processing by HomeController#index as HTML
366
+ Completed 200 OK in 2ms (Views: 1.4ms)
367
+ Processing by HomeController#index as HTML
368
+ Completed 200 OK in 2ms (Views: 1.4ms)
369
+ Processing by HomeController#index as HTML
370
+ Completed 200 OK in 2ms (Views: 1.5ms)
371
+ Processing by HomeController#respond_to_test as HTML
372
+ Completed 200 OK in 3ms (Views: 2.5ms)
373
+ Processing by HomeController#respond_to_test as HTML
374
+ Completed 200 OK in 3ms (Views: 2.5ms)
375
+ Processing by HomeController#respond_to_test as MOBILE
376
+ Completed 200 OK in 1ms (Views: 1.1ms)
377
+ Processing by HomeController#index as JS
378
+ Completed 200 OK in 7ms (Views: 6.6ms)
379
+ Processing by HomeController#index as HTML
380
+ Completed 200 OK in 2ms (Views: 1.5ms)
381
+ Processing by HomeController#index as HTML
382
+ Completed 200 OK in 1ms (Views: 1.3ms)
383
+ Processing by NoFallbackController#index as HTML
384
+ Completed 200 OK in 6ms (Views: 5.7ms)
385
+ Processing by NoFallbackController#index as HTML
386
+ Completed 200 OK in 3ms (Views: 2.6ms)
387
+ Processing by NoFallbackController#test as HTML
388
+ Completed 500 Internal Server Error in 2ms
389
+ Processing by NoFallbackController#test as HTML
390
+ Completed 500 Internal Server Error in 1ms
391
+ Processing by NoFallbackController#test as HTML
392
+ Completed 500 Internal Server Error in 1ms
393
+ Processing by DefaultFallbackController#index as HTML
394
+ Completed 200 OK in 2240ms (Views: 92.0ms)
395
+ Processing by DefaultFallbackController#index as HTML
396
+ Completed 200 OK in 5970ms (Views: 4.5ms)
397
+ Processing by DefaultFallbackController#test as HTML
398
+ Processing by DefaultFallbackController#index as HTML
399
+ Completed 200 OK in 88ms (Views: 87.7ms)
400
+ Processing by DefaultFallbackController#index as HTML
401
+ Completed 200 OK in 3ms (Views: 2.9ms)
402
+ Processing by DefaultFallbackController#test as HTML
403
+ Completed 200 OK in 3ms (Views: 2.2ms)
404
+ Processing by DefaultFallbackController#test as JS
405
+ Completed 200 OK in 87ms (Views: 86.6ms)
406
+ Processing by ForceFallbackController#index as HTML
407
+ Completed 200 OK in 6ms (Views: 5.9ms)
408
+ Processing by ForceFallbackController#index as HTML
409
+ Completed 200 OK in 3ms (Views: 2.3ms)
410
+ Processing by ForceFallbackController#test as HTML
411
+ Completed 200 OK in 2ms (Views: 1.7ms)
412
+ Processing by ForceFallbackController#test as HTML
413
+ Completed 200 OK in 1ms (Views: 0.8ms)
414
+ Processing by ForceFallbackController#test as JS
415
+ Completed 200 OK in 1ms (Views: 0.8ms)
416
+ Processing by HomeController#index as HTML
417
+ Completed 200 OK in 7ms (Views: 6.2ms)
418
+ Processing by HomeController#index as HTML
419
+ Completed 200 OK in 2ms (Views: 1.3ms)
420
+ Processing by HomeController#index as HTML
421
+ Completed 200 OK in 3ms (Views: 2.9ms)
422
+ Processing by HomeController#index as HTML
423
+ Completed 200 OK in 2ms (Views: 1.4ms)
424
+ Processing by HomeController#index as HTML
425
+ Completed 200 OK in 2ms (Views: 1.3ms)
426
+ Processing by HomeController#index as HTML
427
+ Completed 200 OK in 2ms (Views: 1.4ms)
428
+ Processing by HomeController#index as HTML
429
+ Completed 200 OK in 2ms (Views: 1.3ms)
430
+ Processing by HomeController#index as HTML
431
+ Completed 200 OK in 2ms (Views: 1.3ms)
432
+ Processing by HomeController#index as HTML
433
+ Completed 200 OK in 2ms (Views: 1.3ms)
434
+ Processing by HomeController#respond_to_test as HTML
435
+ Completed 200 OK in 3ms (Views: 2.1ms)
436
+ Processing by HomeController#respond_to_test as HTML
437
+ Completed 200 OK in 3ms (Views: 2.5ms)
438
+ Processing by HomeController#respond_to_test as MOBILE
439
+ Completed 200 OK in 1ms (Views: 1.1ms)
440
+ Processing by HomeController#index as JS
441
+ Completed 200 OK in 6ms (Views: 6.3ms)
442
+ Processing by HomeController#index as HTML
443
+ Completed 200 OK in 1ms (Views: 1.3ms)
444
+ Processing by HomeController#index as HTML
445
+ Completed 200 OK in 1ms (Views: 1.3ms)
446
+ Processing by NoFallbackController#index as HTML
447
+ Completed 200 OK in 6ms (Views: 5.6ms)
448
+ Processing by NoFallbackController#index as HTML
449
+ Completed 200 OK in 3ms (Views: 2.4ms)
450
+ Processing by NoFallbackController#test as HTML
451
+ Completed 500 Internal Server Error in 2ms
452
+ Processing by NoFallbackController#test as HTML
453
+ Completed 500 Internal Server Error in 1ms
454
+ Processing by NoFallbackController#test as HTML
455
+ Completed 500 Internal Server Error in 1ms
456
+ Processing by DefaultFallbackController#index as HTML
457
+ Completed 200 OK in 105ms (Views: 104.8ms)
458
+ Processing by DefaultFallbackController#index as HTML
459
+ Completed 200 OK in 3ms (Views: 2.8ms)
460
+ Processing by DefaultFallbackController#test as HTML
461
+ Completed 200 OK in 3ms (Views: 2.5ms)
462
+ Processing by DefaultFallbackController#test as JS
463
+ Completed 200 OK in 96ms (Views: 95.4ms)
464
+ Processing by ForceFallbackController#index as HTML
465
+ Completed 200 OK in 15ms (Views: 14.9ms)
466
+ Processing by ForceFallbackController#index as HTML
467
+ Completed 200 OK in 3ms (Views: 2.5ms)
468
+ Processing by ForceFallbackController#test as HTML
469
+ Completed 200 OK in 2ms (Views: 2.0ms)
470
+ Processing by ForceFallbackController#test as HTML
471
+ Completed 200 OK in 1ms (Views: 0.8ms)
472
+ Processing by ForceFallbackController#test as JS
473
+ Completed 200 OK in 1ms (Views: 0.7ms)
474
+ Processing by HomeController#index as HTML
475
+ Completed 200 OK in 6ms (Views: 5.8ms)
476
+ Processing by HomeController#index as HTML
477
+ Completed 200 OK in 2ms (Views: 1.3ms)
478
+ Processing by HomeController#index as HTML
479
+ Completed 200 OK in 3ms (Views: 3.1ms)
480
+ Processing by HomeController#index as HTML
481
+ Completed 200 OK in 2ms (Views: 1.4ms)
482
+ Processing by HomeController#index as HTML
483
+ Completed 200 OK in 2ms (Views: 1.4ms)
484
+ Processing by HomeController#index as HTML
485
+ Completed 200 OK in 3ms (Views: 2.1ms)
486
+ Processing by HomeController#index as HTML
487
+ Completed 200 OK in 2ms (Views: 1.4ms)
488
+ Processing by HomeController#index as HTML
489
+ Completed 200 OK in 2ms (Views: 1.3ms)
490
+ Processing by HomeController#index as HTML
491
+ Completed 200 OK in 2ms (Views: 1.3ms)
492
+ Processing by HomeController#respond_to_test as HTML
493
+ Completed 200 OK in 3ms (Views: 2.6ms)
494
+ Processing by HomeController#respond_to_test as HTML
495
+ Completed 200 OK in 3ms (Views: 2.6ms)
496
+ Processing by HomeController#respond_to_test as MOBILE
497
+ Completed 200 OK in 1ms (Views: 1.2ms)
498
+ Processing by HomeController#index as JS
499
+ Completed 200 OK in 7ms (Views: 6.5ms)
500
+ Processing by HomeController#index as HTML
501
+ Completed 200 OK in 1ms (Views: 1.3ms)
502
+ Processing by HomeController#index as HTML
503
+ Completed 200 OK in 1ms (Views: 1.3ms)
504
+ Processing by NoFallbackController#index as HTML
505
+ Completed 200 OK in 6ms (Views: 5.5ms)
506
+ Processing by NoFallbackController#index as HTML
507
+ Completed 200 OK in 3ms (Views: 2.5ms)
508
+ Processing by NoFallbackController#test as HTML
509
+ Completed 500 Internal Server Error in 2ms
510
+ Processing by NoFallbackController#test as HTML
511
+ Completed 500 Internal Server Error in 1ms
512
+ Processing by NoFallbackController#test as HTML
513
+ Completed 500 Internal Server Error in 1ms
514
+ Processing by DefaultFallbackController#index as HTML
515
+ Completed 500 Internal Server Error in 0ms
516
+ Processing by DefaultFallbackController#index as HTML
517
+ Completed 500 Internal Server Error in 0ms
518
+ Processing by DefaultFallbackController#test as HTML
519
+ Completed 500 Internal Server Error in 0ms
520
+ Processing by DefaultFallbackController#test as JS
521
+ Completed 500 Internal Server Error in 0ms
522
+ Processing by ForceFallbackController#index as HTML
523
+ Completed 500 Internal Server Error in 0ms
524
+ Processing by ForceFallbackController#index as HTML
525
+ Completed 500 Internal Server Error in 0ms
526
+ Processing by ForceFallbackController#test as HTML
527
+ Completed 500 Internal Server Error in 0ms
528
+ Processing by ForceFallbackController#test as HTML
529
+ Completed 500 Internal Server Error in 0ms
530
+ Processing by ForceFallbackController#test as JS
531
+ Completed 500 Internal Server Error in 0ms
532
+ Processing by HomeController#index as HTML
533
+ Completed 500 Internal Server Error in 0ms
534
+ Processing by HomeController#index as HTML
535
+ Completed 500 Internal Server Error in 0ms
536
+ Processing by HomeController#index as HTML
537
+ Completed 500 Internal Server Error in 0ms
538
+ Processing by HomeController#index as HTML
539
+ Completed 500 Internal Server Error in 0ms
540
+ Processing by HomeController#index as HTML
541
+ Completed 500 Internal Server Error in 0ms
542
+ Processing by HomeController#index as HTML
543
+ Completed 500 Internal Server Error in 0ms
544
+ Processing by HomeController#index as HTML
545
+ Completed 500 Internal Server Error in 0ms
546
+ Processing by HomeController#index as HTML
547
+ Completed 500 Internal Server Error in 0ms
548
+ Processing by HomeController#index as HTML
549
+ Completed 500 Internal Server Error in 0ms
550
+ Processing by HomeController#respond_to_test as HTML
551
+ Completed 500 Internal Server Error in 0ms
552
+ Processing by HomeController#respond_to_test as HTML
553
+ Completed 500 Internal Server Error in 0ms
554
+ Processing by HomeController#respond_to_test as MOBILE
555
+ Completed 500 Internal Server Error in 0ms
556
+ Processing by HomeController#index as JS
557
+ Completed 500 Internal Server Error in 0ms
558
+ Processing by HomeController#index as HTML
559
+ Completed 500 Internal Server Error in 0ms
560
+ Processing by HomeController#index as HTML
561
+ Completed 200 OK in 127ms (Views: 126.7ms)
562
+ Processing by NoFallbackController#index as HTML
563
+ Completed 500 Internal Server Error in 0ms
564
+ Processing by NoFallbackController#index as HTML
565
+ Completed 500 Internal Server Error in 0ms
566
+ Processing by NoFallbackController#test as HTML
567
+ Completed 500 Internal Server Error in 0ms
568
+ Processing by NoFallbackController#test as HTML
569
+ Completed 500 Internal Server Error in 0ms
570
+ Processing by NoFallbackController#test as HTML
571
+ Completed 500 Internal Server Error in 0ms
572
+ Processing by DefaultFallbackController#index as HTML
573
+ Completed 500 Internal Server Error in 0ms
574
+ Processing by DefaultFallbackController#index as HTML
575
+ Completed 500 Internal Server Error in 0ms
576
+ Processing by DefaultFallbackController#test as HTML
577
+ Completed 500 Internal Server Error in 0ms
578
+ Processing by DefaultFallbackController#test as JS
579
+ Completed 500 Internal Server Error in 0ms
580
+ Processing by ForceFallbackController#index as HTML
581
+ Completed 500 Internal Server Error in 0ms
582
+ Processing by ForceFallbackController#index as HTML
583
+ Completed 500 Internal Server Error in 0ms
584
+ Processing by ForceFallbackController#test as HTML
585
+ Completed 500 Internal Server Error in 0ms
586
+ Processing by ForceFallbackController#test as HTML
587
+ Completed 500 Internal Server Error in 0ms
588
+ Processing by ForceFallbackController#test as JS
589
+ Completed 500 Internal Server Error in 0ms
590
+ Processing by HomeController#index as HTML
591
+ Completed 500 Internal Server Error in 0ms
592
+ Processing by HomeController#index as HTML
593
+ Completed 500 Internal Server Error in 0ms
594
+ Processing by HomeController#index as HTML
595
+ Completed 500 Internal Server Error in 0ms
596
+ Processing by HomeController#index as HTML
597
+ Completed 500 Internal Server Error in 0ms
598
+ Processing by HomeController#index as HTML
599
+ Completed 500 Internal Server Error in 0ms
600
+ Processing by HomeController#index as HTML
601
+ Completed 500 Internal Server Error in 0ms
602
+ Processing by HomeController#index as HTML
603
+ Completed 500 Internal Server Error in 0ms
604
+ Processing by HomeController#index as HTML
605
+ Completed 500 Internal Server Error in 0ms
606
+ Processing by HomeController#index as HTML
607
+ Completed 500 Internal Server Error in 0ms
608
+ Processing by HomeController#respond_to_test as HTML
609
+ Completed 500 Internal Server Error in 0ms
610
+ Processing by HomeController#respond_to_test as HTML
611
+ Completed 500 Internal Server Error in 0ms
612
+ Processing by HomeController#respond_to_test as MOBILE
613
+ Completed 500 Internal Server Error in 0ms
614
+ Processing by HomeController#index as JS
615
+ Completed 500 Internal Server Error in 0ms
616
+ Processing by HomeController#index as HTML
617
+ Completed 500 Internal Server Error in 0ms
618
+ Processing by HomeController#index as HTML
619
+ Completed 200 OK in 130ms (Views: 130.3ms)
620
+ Processing by NoFallbackController#index as HTML
621
+ Completed 500 Internal Server Error in 0ms
622
+ Processing by NoFallbackController#index as HTML
623
+ Completed 500 Internal Server Error in 0ms
624
+ Processing by NoFallbackController#test as HTML
625
+ Completed 500 Internal Server Error in 0ms
626
+ Processing by NoFallbackController#test as HTML
627
+ Completed 500 Internal Server Error in 0ms
628
+ Processing by NoFallbackController#test as HTML
629
+ Completed 500 Internal Server Error in 0ms
630
+ Processing by DefaultFallbackController#index as HTML
631
+ Completed 200 OK in 87ms (Views: 86.9ms)
632
+ Processing by DefaultFallbackController#index as HTML
633
+ Completed 200 OK in 3ms (Views: 2.9ms)
634
+ Processing by DefaultFallbackController#test as HTML
635
+ Completed 200 OK in 3ms (Views: 2.2ms)
636
+ Processing by DefaultFallbackController#test as JS
637
+ Completed 200 OK in 85ms (Views: 84.9ms)
638
+ Processing by ForceFallbackController#index as HTML
639
+ Completed 200 OK in 7ms (Views: 6.0ms)
640
+ Processing by ForceFallbackController#index as HTML
641
+ Completed 200 OK in 2ms (Views: 2.2ms)
642
+ Processing by ForceFallbackController#test as HTML
643
+ Completed 200 OK in 2ms (Views: 1.7ms)
644
+ Processing by ForceFallbackController#test as HTML
645
+ Completed 200 OK in 1ms (Views: 0.7ms)
646
+ Processing by ForceFallbackController#test as JS
647
+ Completed 200 OK in 1ms (Views: 0.7ms)
648
+ Processing by HomeController#index as HTML
649
+ Completed 200 OK in 6ms (Views: 5.5ms)
650
+ Processing by HomeController#index as HTML
651
+ Completed 200 OK in 2ms (Views: 1.3ms)
652
+ Processing by HomeController#index as HTML
653
+ Completed 200 OK in 3ms (Views: 2.7ms)
654
+ Processing by HomeController#index as HTML
655
+ Completed 200 OK in 2ms (Views: 1.3ms)
656
+ Processing by HomeController#index as HTML
657
+ Completed 200 OK in 2ms (Views: 1.3ms)
658
+ Processing by HomeController#index as HTML
659
+ Completed 200 OK in 2ms (Views: 1.4ms)
660
+ Processing by HomeController#index as HTML
661
+ Completed 200 OK in 2ms (Views: 1.3ms)
662
+ Processing by HomeController#index as HTML
663
+ Completed 200 OK in 2ms (Views: 1.3ms)
664
+ Processing by HomeController#index as HTML
665
+ Completed 200 OK in 2ms (Views: 1.3ms)
666
+ Processing by HomeController#respond_to_test as HTML
667
+ Completed 200 OK in 3ms (Views: 2.1ms)
668
+ Processing by HomeController#respond_to_test as HTML
669
+ Completed 200 OK in 2ms (Views: 2.2ms)
670
+ Processing by HomeController#respond_to_test as MOBILE
671
+ Completed 200 OK in 1ms (Views: 1.1ms)
672
+ Processing by HomeController#index as JS
673
+ Completed 200 OK in 6ms (Views: 6.2ms)
674
+ Processing by HomeController#index as HTML
675
+ Completed 200 OK in 1ms (Views: 1.3ms)
676
+ Processing by HomeController#index as HTML
677
+ Completed 200 OK in 1ms (Views: 1.3ms)
678
+ Processing by NoFallbackController#index as HTML
679
+ Completed 200 OK in 6ms (Views: 5.3ms)
680
+ Processing by NoFallbackController#index as HTML
681
+ Completed 200 OK in 2ms (Views: 2.2ms)
682
+ Processing by NoFallbackController#test as HTML
683
+ Completed 500 Internal Server Error in 2ms
684
+ Processing by NoFallbackController#test as HTML
685
+ Completed 500 Internal Server Error in 1ms
686
+ Processing by NoFallbackController#test as HTML
687
+ Completed 500 Internal Server Error in 1ms
688
+ Processing by DefaultFallbackController#index as HTML
689
+ Completed 200 OK in 145ms (Views: 144.4ms)
690
+ Processing by DefaultFallbackController#index as HTML
691
+ Completed 200 OK in 4ms (Views: 3.6ms)
692
+ Processing by DefaultFallbackController#test as HTML
693
+ Completed 200 OK in 3ms (Views: 2.8ms)
694
+ Processing by DefaultFallbackController#test as JS
695
+ Completed 200 OK in 55ms (Views: 54.9ms)
696
+ Processing by ForceFallbackController#index as HTML
697
+ Completed 200 OK in 7ms (Views: 6.3ms)
698
+ Processing by ForceFallbackController#index as HTML
699
+ Completed 200 OK in 3ms (Views: 2.8ms)
700
+ Processing by ForceFallbackController#test as HTML
701
+ Completed 200 OK in 3ms (Views: 2.0ms)
702
+ Processing by ForceFallbackController#test as HTML
703
+ Completed 200 OK in 1ms (Views: 1.0ms)
704
+ Processing by ForceFallbackController#test as JS
705
+ Completed 200 OK in 1ms (Views: 1.0ms)
706
+ Processing by HomeController#index as HTML
707
+ Completed 200 OK in 7ms (Views: 6.3ms)
708
+ Processing by HomeController#index as HTML
709
+ Completed 200 OK in 2ms (Views: 1.8ms)
710
+ Processing by HomeController#index as HTML
711
+ Completed 200 OK in 4ms (Views: 3.4ms)
712
+ Processing by HomeController#index as HTML
713
+ Completed 200 OK in 2ms (Views: 1.8ms)
714
+ Processing by HomeController#index as HTML
715
+ Completed 200 OK in 2ms (Views: 1.8ms)
716
+ Processing by HomeController#index as HTML
717
+ Completed 200 OK in 3ms (Views: 2.5ms)
718
+ Processing by HomeController#index as HTML
719
+ Completed 200 OK in 2ms (Views: 1.8ms)
720
+ Processing by HomeController#index as HTML
721
+ Completed 200 OK in 2ms (Views: 1.8ms)
722
+ Processing by HomeController#index as HTML
723
+ Completed 200 OK in 2ms (Views: 1.8ms)
724
+ Processing by HomeController#respond_to_test as HTML
725
+ Completed 200 OK in 3ms (Views: 2.6ms)
726
+ Processing by HomeController#respond_to_test as HTML
727
+ Completed 200 OK in 4ms (Views: 3.1ms)
728
+ Processing by HomeController#respond_to_test as MOBILE
729
+ Completed 200 OK in 2ms (Views: 1.6ms)
730
+ Processing by HomeController#index as JS
731
+ Completed 200 OK in 7ms (Views: 6.6ms)
732
+ Processing by HomeController#index as HTML
733
+ Completed 200 OK in 2ms (Views: 1.8ms)
734
+ Processing by HomeController#index as HTML
735
+ Completed 200 OK in 2ms (Views: 1.8ms)
736
+ Processing by NoFallbackController#index as HTML
737
+ Completed 200 OK in 6ms (Views: 5.8ms)
738
+ Processing by NoFallbackController#index as HTML
739
+ Completed 200 OK in 3ms (Views: 2.8ms)
740
+ Processing by NoFallbackController#test as HTML
741
+ Completed 500 Internal Server Error in 2ms
742
+ Processing by NoFallbackController#test as HTML
743
+ Completed 500 Internal Server Error in 1ms
744
+ Processing by NoFallbackController#test as HTML
745
+ Completed 500 Internal Server Error in 1ms
746
+ Processing by DefaultFallbackController#index as HTML
747
+ Completed 200 OK in 140ms (Views: 138.9ms)
748
+ Processing by DefaultFallbackController#index as HTML
749
+ Completed 200 OK in 4ms (Views: 3.5ms)
750
+ Processing by DefaultFallbackController#test as HTML
751
+ Completed 200 OK in 3ms (Views: 2.7ms)
752
+ Processing by DefaultFallbackController#test as JS
753
+ Completed 200 OK in 46ms (Views: 45.2ms)
754
+ Processing by ForceFallbackController#index as HTML
755
+ Completed 200 OK in 56ms (Views: 55.1ms)
756
+ Processing by ForceFallbackController#index as HTML
757
+ Completed 200 OK in 3ms (Views: 2.9ms)
758
+ Processing by ForceFallbackController#test as HTML
759
+ Completed 200 OK in 3ms (Views: 2.0ms)
760
+ Processing by ForceFallbackController#test as HTML
761
+ Completed 200 OK in 1ms (Views: 1.0ms)
762
+ Processing by ForceFallbackController#test as JS
763
+ Completed 200 OK in 1ms (Views: 1.0ms)
764
+ Processing by HomeController#index as HTML
765
+ Completed 200 OK in 7ms (Views: 6.3ms)
766
+ Processing by HomeController#index as HTML
767
+ Completed 200 OK in 2ms (Views: 1.8ms)
768
+ Processing by HomeController#index as HTML
769
+ Completed 200 OK in 4ms (Views: 3.4ms)
770
+ Processing by HomeController#index as HTML
771
+ Completed 200 OK in 2ms (Views: 1.8ms)
772
+ Processing by HomeController#index as HTML
773
+ Completed 200 OK in 2ms (Views: 1.9ms)
774
+ Processing by HomeController#index as HTML
775
+ Completed 200 OK in 2ms (Views: 1.8ms)
776
+ Processing by HomeController#index as HTML
777
+ Completed 200 OK in 2ms (Views: 1.9ms)
778
+ Processing by HomeController#index as HTML
779
+ Completed 200 OK in 2ms (Views: 1.8ms)
780
+ Processing by HomeController#index as HTML
781
+ Completed 200 OK in 2ms (Views: 1.8ms)
782
+ Processing by HomeController#respond_to_test as HTML
783
+ Completed 200 OK in 3ms (Views: 2.7ms)
784
+ Processing by HomeController#respond_to_test as HTML
785
+ Completed 200 OK in 3ms (Views: 2.8ms)
786
+ Processing by HomeController#respond_to_test as MOBILE
787
+ Completed 200 OK in 2ms (Views: 1.6ms)
788
+ Processing by HomeController#index as JS
789
+ Completed 200 OK in 7ms (Views: 6.7ms)
790
+ Processing by HomeController#index as HTML
791
+ Completed 200 OK in 2ms (Views: 1.8ms)
792
+ Processing by HomeController#index as HTML
793
+ Completed 200 OK in 2ms (Views: 1.8ms)
794
+ Processing by NoFallbackController#index as HTML
795
+ Completed 200 OK in 6ms (Views: 5.9ms)
796
+ Processing by NoFallbackController#index as HTML
797
+ Completed 200 OK in 3ms (Views: 2.8ms)
798
+ Processing by NoFallbackController#test as HTML
799
+ Completed 500 Internal Server Error in 2ms
800
+ Processing by NoFallbackController#test as HTML
801
+ Completed 500 Internal Server Error in 1ms
802
+ Processing by NoFallbackController#test as HTML
803
+ Completed 500 Internal Server Error in 1ms