mobylette 1.2.2 → 1.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.rdoc CHANGED
@@ -47,6 +47,12 @@ There is a difference between is_mobile_view? and is_mobile_request?. You may ha
47
47
 
48
48
  Same as mobylette_stylesheet_link_tag, but for javascript files and javascript_include_tag
49
49
 
50
+ == Mobile View Path
51
+
52
+ Mobylette will look your mobile templates first at app/mobile_views. This default behavior may be disabled by passing the :ignore_mobile_view_path => true option. Or it can be ignored, it will look there first, but at app/view after that. This is just an extra organization option you may use if you prefer.
53
+
54
+ respond_to_mobile_requests :ignore_mobile_view_path => true
55
+
50
56
  == Fall Backs
51
57
 
52
58
  By default, when the mobile format is not found, mobylette will fall back to the request original format. For example, if a cell phone makes a request by html, and there is no mobile view, it will render the html. You may force it always to fall back to a especific format, by passing the :fall_back parameter to the respond_to_mobile_requests method:
@@ -38,12 +38,17 @@ module Mobylette
38
38
  # mobile verification. This will let your ajax calls to work as intended.
39
39
  # You may disable this (actually you will have to) if you are using JQuery Mobile, or
40
40
  # other js framework that uses ajax. To disable, set :skip_xhr_requests => false
41
+ # * :ignore_mobile_view_path => true/false
42
+ # False by default. This will force rails to look for the mobile views in the
43
+ # app/mobile_views path before app/views. This behavior is only for mobile requests.
44
+ # You may ignore this path aswell, it is just an extra organization option you have.
41
45
  #
42
46
  def respond_to_mobile_requests(options = {})
43
47
  return if self.included_modules.include?(Mobylette::Controllers::RespondToMobileRequestsMethods)
44
48
 
45
49
  options.reverse_merge!({
46
- :skip_xhr_requests => true
50
+ :skip_xhr_requests => true,
51
+ :ignore_mobile_view_path => false
47
52
  })
48
53
 
49
54
  cattr_accessor :mobylette_fall_back_format
@@ -52,6 +57,9 @@ module Mobylette
52
57
  cattr_accessor :mobylette_skip_xhr_requests
53
58
  self.mobylette_skip_xhr_requests = options[:skip_xhr_requests]
54
59
 
60
+ cattr_accessor :mobylette_ignore_mobile_view_path
61
+ self.mobylette_ignore_mobile_view_path = options[:ignore_mobile_view_path]
62
+
55
63
  self.send(:include, Mobylette::Controllers::RespondToMobileRequestsMethods)
56
64
  end
57
65
  end
@@ -93,7 +101,7 @@ module Mobylette
93
101
 
94
102
  # Returns true if this request should be treated as a mobile request
95
103
  def respond_as_mobile?
96
- processing_xhr_requests? and (force_mobile_by_session? or is_mobile_request?)
104
+ processing_xhr_requests? and (force_mobile_by_session? or is_mobile_request? or (params[:format] == 'mobile'))
97
105
  end
98
106
 
99
107
  # Returns true if the visitor has de force_mobile session
@@ -113,6 +121,11 @@ module Mobylette
113
121
  def handle_mobile
114
122
  return if session[:mobylette_override] == :ignore_mobile
115
123
  if respond_as_mobile?
124
+
125
+ unless self.mobylette_ignore_mobile_view_path
126
+ prepend_view_path File.join(Rails.root, 'app', 'mobile_views')
127
+ end
128
+
116
129
  original_format = request.format.to_sym
117
130
  request.format = :mobile
118
131
  if self.mobylette_fall_back_format != false
@@ -1,3 +1,3 @@
1
1
  module Mobylette
2
- VERSION = "1.2.2"
2
+ VERSION = "1.3.0"
3
3
  end
@@ -0,0 +1,12 @@
1
+ require 'spec_helper'
2
+
3
+ describe IgnoreMobilePathController do
4
+ render_views
5
+
6
+ it "it should render the view on the mobile path" do
7
+ force_mobile_request_agent
8
+ get :index
9
+ response.should render_template(:index)
10
+ response.body.should contain("THIS IS THE MOBILE VIEW BUT OUTSIDE THE MOBILE PATH")
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe ViewPathController do
4
+ render_views
5
+
6
+ it "it should render the view on the mobile path" do
7
+ force_mobile_request_agent
8
+ get :index
9
+ response.should render_template(:index)
10
+ response.body.should contain("THIS IS A MOBILE VIEW LOADED FROM THE MOBILE PATH")
11
+ end
12
+ end
13
+
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -6,6 +6,7 @@ class HomeController < ApplicationController
6
6
  end
7
7
 
8
8
  def respond_to_test
9
+
9
10
  respond_to do |format|
10
11
  format.html {render :action => "desktop"}
11
12
  format.mobile {render :action => "mobile"}
@@ -0,0 +1,9 @@
1
+ class IgnoreMobilePathController < ApplicationController
2
+
3
+ respond_to_mobile_requests :ignore_mobile_view_path => true
4
+
5
+ def index
6
+
7
+ end
8
+
9
+ end
@@ -0,0 +1,9 @@
1
+ class ViewPathController < ApplicationController
2
+
3
+ respond_to_mobile_requests
4
+
5
+ def index
6
+
7
+ end
8
+
9
+ end
@@ -0,0 +1,2 @@
1
+ module IgnoreMobilePathHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ module ViewPathHelper
2
+ end
@@ -0,0 +1 @@
1
+ THIS IS A MOBILE VIEW LOADED FROM THE MOBILE PATH
@@ -0,0 +1 @@
1
+ THIS IS A MOBILE VIEW LOADED FROM THE MOBILE PATH
@@ -0,0 +1 @@
1
+ THIS IS THE MOBILE VIEW BUT OUTSIDE THE MOBILE PATH
@@ -0,0 +1 @@
1
+ THIS IS THE MOBILE VIEW BUT OUTSIDE THE MOBILE PATH
@@ -10,6 +10,8 @@ Dummy::Application.routes.draw do
10
10
  get "respond_to_test(.:format)" => "home#respond_to_test"
11
11
  get "no_mobile_view(.:format)" => "home#no_mobile_view"
12
12
 
13
+ get "load_from_mobile_path" => "view_path#index"
14
+ get "ignore_mobile_path" => "ignore_mobile_path#index"
13
15
 
14
16
  get "no_fallback/index(.:format)" => "no_fallback#index"
15
17
  get "no_fallback/test(.:format)" => "no_fallback#test"
@@ -1685,3 +1685,1205 @@ Completed 500 Internal Server Error in 1ms
1685
1685
  Completed 500 Internal Server Error in 1ms
1686
1686
  Processing by SkipXhrRequestController#index as JS
1687
1687
  Completed 200 OK in 7ms (Views: 6.4ms)
1688
+ Processing by DefaultFallbackController#index as HTML
1689
+ Completed 200 OK in 105ms (Views: 104.7ms)
1690
+ Processing by DefaultFallbackController#index as HTML
1691
+ Completed 200 OK in 5ms (Views: 4.6ms)
1692
+ Processing by DefaultFallbackController#test as HTML
1693
+ Completed 200 OK in 6ms (Views: 5.4ms)
1694
+ Processing by DefaultFallbackController#test as JS
1695
+ Completed 200 OK in 115ms (Views: 115.1ms)
1696
+ Processing by ForceFallbackController#index as HTML
1697
+ Completed 200 OK in 9ms (Views: 8.5ms)
1698
+ Processing by ForceFallbackController#index as HTML
1699
+ Completed 200 OK in 8ms (Views: 7.2ms)
1700
+ Processing by ForceFallbackController#test as HTML
1701
+ Completed 200 OK in 3ms (Views: 2.1ms)
1702
+ Processing by ForceFallbackController#test as HTML
1703
+ Completed 200 OK in 1ms (Views: 0.9ms)
1704
+ Processing by ForceFallbackController#test as JS
1705
+ Completed 200 OK in 3ms (Views: 3.1ms)
1706
+ Processing by HomeController#index as HTML
1707
+ Completed 200 OK in 8ms (Views: 7.5ms)
1708
+ Processing by HomeController#index as HTML
1709
+ Completed 200 OK in 2ms (Views: 1.6ms)
1710
+ Processing by HomeController#index as HTML
1711
+ Completed 200 OK in 3ms (Views: 3.2ms)
1712
+ Processing by HomeController#index as HTML
1713
+ Completed 200 OK in 7ms (Views: 6.2ms)
1714
+ Processing by HomeController#index as HTML
1715
+ Completed 200 OK in 2ms (Views: 2.1ms)
1716
+ Processing by HomeController#index as HTML
1717
+ Completed 200 OK in 2ms (Views: 1.7ms)
1718
+ Processing by HomeController#index as HTML
1719
+ Completed 200 OK in 2ms (Views: 2.0ms)
1720
+ Processing by HomeController#index as HTML
1721
+ Completed 200 OK in 5ms (Views: 4.1ms)
1722
+ Processing by HomeController#index as HTML
1723
+ Completed 200 OK in 3ms (Views: 2.4ms)
1724
+ Processing by HomeController#respond_to_test as HTML
1725
+ Completed 200 OK in 3ms (Views: 2.5ms)
1726
+ Processing by HomeController#respond_to_test as HTML
1727
+ Completed 200 OK in 4ms (Views: 3.2ms)
1728
+ Processing by HomeController#respond_to_test as MOBILE
1729
+ Completed 200 OK in 2ms (Views: 1.4ms)
1730
+ Processing by HomeController#index as JS
1731
+ Completed 200 OK in 13ms (Views: 12.5ms)
1732
+ Processing by HomeController#index as HTML
1733
+ Completed 200 OK in 2ms (Views: 1.7ms)
1734
+ Processing by HomeController#index as HTML
1735
+ Completed 200 OK in 3ms (Views: 2.3ms)
1736
+ Processing by ViewPathController#index as HTML
1737
+ Completed 200 OK in 8ms (Views: 7.0ms)
1738
+ Processing by NoFallbackController#index as HTML
1739
+ Completed 200 OK in 7ms (Views: 6.0ms)
1740
+ Processing by NoFallbackController#index as HTML
1741
+ Completed 200 OK in 5ms (Views: 4.1ms)
1742
+ Processing by NoFallbackController#test as HTML
1743
+ Completed 500 Internal Server Error in 3ms
1744
+ Processing by NoFallbackController#test as HTML
1745
+ Completed 500 Internal Server Error in 1ms
1746
+ Processing by NoFallbackController#test as HTML
1747
+ Completed 500 Internal Server Error in 1ms
1748
+ Processing by SkipXhrRequestController#index as JS
1749
+ Completed 200 OK in 15ms (Views: 14.5ms)
1750
+ Processing by ViewPathController#index as HTML
1751
+ Completed 200 OK in 3ms (Views: 3.1ms)
1752
+ Processing by DefaultFallbackController#index as HTML
1753
+ Completed 200 OK in 101ms (Views: 99.7ms)
1754
+ Processing by DefaultFallbackController#index as HTML
1755
+ Completed 200 OK in 4ms (Views: 3.5ms)
1756
+ Processing by DefaultFallbackController#test as HTML
1757
+ Completed 200 OK in 19ms (Views: 17.6ms)
1758
+ Processing by DefaultFallbackController#test as JS
1759
+ Completed 200 OK in 94ms (Views: 92.8ms)
1760
+ Processing by ForceFallbackController#index as HTML
1761
+ Completed 200 OK in 8ms (Views: 7.5ms)
1762
+ Processing by ForceFallbackController#index as HTML
1763
+ Completed 200 OK in 3ms (Views: 3.0ms)
1764
+ Processing by ForceFallbackController#test as HTML
1765
+ Completed 200 OK in 10ms (Views: 8.2ms)
1766
+ Processing by ForceFallbackController#test as HTML
1767
+ Completed 200 OK in 4ms (Views: 3.2ms)
1768
+ Processing by ForceFallbackController#test as JS
1769
+ Completed 200 OK in 4ms (Views: 3.2ms)
1770
+ Processing by HomeController#index as HTML
1771
+ Completed 200 OK in 8ms (Views: 7.4ms)
1772
+ Processing by HomeController#index as HTML
1773
+ Completed 200 OK in 2ms (Views: 1.6ms)
1774
+ Processing by HomeController#index as HTML
1775
+ Completed 200 OK in 5ms (Views: 4.7ms)
1776
+ Processing by HomeController#index as HTML
1777
+ Completed 200 OK in 3ms (Views: 2.4ms)
1778
+ Processing by HomeController#index as HTML
1779
+ Completed 200 OK in 2ms (Views: 2.0ms)
1780
+ Processing by HomeController#index as HTML
1781
+ Completed 200 OK in 4ms (Views: 3.9ms)
1782
+ Processing by HomeController#index as HTML
1783
+ Completed 200 OK in 5ms (Views: 4.6ms)
1784
+ Processing by HomeController#index as HTML
1785
+ Completed 200 OK in 2ms (Views: 1.5ms)
1786
+ Processing by HomeController#index as HTML
1787
+ Completed 200 OK in 2ms (Views: 1.8ms)
1788
+ Processing by HomeController#respond_to_test as HTML
1789
+ Completed 200 OK in 3ms (Views: 2.7ms)
1790
+ Processing by HomeController#respond_to_test as HTML
1791
+ Completed 200 OK in 4ms (Views: 3.3ms)
1792
+ Processing by HomeController#respond_to_test as MOBILE
1793
+ Completed 200 OK in 2ms (Views: 1.4ms)
1794
+ Processing by HomeController#index as JS
1795
+ Completed 200 OK in 7ms (Views: 7.3ms)
1796
+ Processing by HomeController#index as HTML
1797
+ Completed 200 OK in 3ms (Views: 3.2ms)
1798
+ Processing by HomeController#index as HTML
1799
+ Completed 200 OK in 2ms (Views: 1.5ms)
1800
+ Processing by ViewPathController#index as HTML
1801
+ Completed 200 OK in 14ms (Views: 12.9ms)
1802
+ Processing by NoFallbackController#index as HTML
1803
+ Completed 200 OK in 6ms (Views: 5.8ms)
1804
+ Processing by NoFallbackController#index as HTML
1805
+ Completed 200 OK in 4ms (Views: 3.5ms)
1806
+ Processing by NoFallbackController#test as HTML
1807
+ Completed 500 Internal Server Error in 4ms
1808
+ Processing by NoFallbackController#test as HTML
1809
+ Completed 500 Internal Server Error in 2ms
1810
+ Processing by NoFallbackController#test as HTML
1811
+ Completed 500 Internal Server Error in 3ms
1812
+ Processing by SkipXhrRequestController#index as JS
1813
+ Completed 200 OK in 10ms (Views: 9.0ms)
1814
+ Processing by ViewPathController#index as HTML
1815
+ Completed 200 OK in 5ms (Views: 4.1ms)
1816
+ Processing by DefaultFallbackController#index as HTML
1817
+ Completed 200 OK in 93ms (Views: 92.1ms)
1818
+ Processing by DefaultFallbackController#index as HTML
1819
+ Completed 200 OK in 3ms (Views: 3.2ms)
1820
+ Processing by DefaultFallbackController#test as HTML
1821
+ Completed 200 OK in 6ms (Views: 4.9ms)
1822
+ Processing by DefaultFallbackController#test as JS
1823
+ Completed 200 OK in 95ms (Views: 94.9ms)
1824
+ Processing by ForceFallbackController#index as HTML
1825
+ Completed 200 OK in 10ms (Views: 8.8ms)
1826
+ Processing by ForceFallbackController#index as HTML
1827
+ Completed 200 OK in 3ms (Views: 2.7ms)
1828
+ Processing by ForceFallbackController#test as HTML
1829
+ Completed 200 OK in 5ms (Views: 4.3ms)
1830
+ Processing by ForceFallbackController#test as HTML
1831
+ Completed 200 OK in 7ms (Views: 6.4ms)
1832
+ Processing by ForceFallbackController#test as JS
1833
+ Completed 200 OK in 3ms (Views: 3.0ms)
1834
+ Processing by HomeController#index as HTML
1835
+ Completed 200 OK in 8ms (Views: 6.8ms)
1836
+ Processing by HomeController#index as HTML
1837
+ Completed 200 OK in 2ms (Views: 1.5ms)
1838
+ Processing by HomeController#index as HTML
1839
+ Completed 200 OK in 6ms (Views: 5.7ms)
1840
+ Processing by HomeController#index as HTML
1841
+ Completed 200 OK in 3ms (Views: 2.6ms)
1842
+ Processing by HomeController#index as HTML
1843
+ Completed 200 OK in 2ms (Views: 1.5ms)
1844
+ Processing by HomeController#index as HTML
1845
+ Completed 200 OK in 3ms (Views: 2.9ms)
1846
+ Processing by HomeController#index as HTML
1847
+ Completed 200 OK in 3ms (Views: 2.4ms)
1848
+ Processing by HomeController#index as HTML
1849
+ Completed 200 OK in 2ms (Views: 1.9ms)
1850
+ Processing by HomeController#index as HTML
1851
+ Completed 200 OK in 2ms (Views: 1.5ms)
1852
+ Processing by HomeController#respond_to_test as HTML
1853
+ Completed 200 OK in 3ms (Views: 2.5ms)
1854
+ Processing by HomeController#respond_to_test as HTML
1855
+ Completed 200 OK in 4ms (Views: 3.4ms)
1856
+ Processing by HomeController#respond_to_test as MOBILE
1857
+ Completed 200 OK in 2ms (Views: 1.4ms)
1858
+ Processing by HomeController#index as JS
1859
+ Completed 200 OK in 7ms (Views: 6.8ms)
1860
+ Processing by HomeController#index as HTML
1861
+ Completed 200 OK in 3ms (Views: 2.6ms)
1862
+ Processing by HomeController#index as HTML
1863
+ Completed 200 OK in 2ms (Views: 1.4ms)
1864
+ Processing by ViewPathController#index as HTML
1865
+ Completed 200 OK in 9ms (Views: 7.9ms)
1866
+ Processing by NoFallbackController#index as HTML
1867
+ Completed 200 OK in 7ms (Views: 6.3ms)
1868
+ Processing by NoFallbackController#index as HTML
1869
+ Completed 200 OK in 3ms (Views: 2.7ms)
1870
+ Processing by NoFallbackController#test as HTML
1871
+ Completed 500 Internal Server Error in 3ms
1872
+ Processing by NoFallbackController#test as HTML
1873
+ Completed 500 Internal Server Error in 2ms
1874
+ Processing by NoFallbackController#test as HTML
1875
+ Completed 500 Internal Server Error in 2ms
1876
+ Processing by SkipXhrRequestController#index as JS
1877
+ Completed 200 OK in 11ms (Views: 10.8ms)
1878
+ Processing by ViewPathController#index as HTML
1879
+ Completed 200 OK in 3ms (Views: 3.1ms)
1880
+ Processing by DefaultFallbackController#index as HTML
1881
+ Processing by ViewPathController#index as HTML
1882
+ Processing by ViewPathController#index as HTML
1883
+ Processing by IgnoreMobilePathController#index as HTML
1884
+ Rendered ignore_mobile_path/index.mobile.erb within layouts/application (21.9ms)
1885
+ Completed 200 OK in 90ms (Views: 89.7ms)
1886
+ Processing by DefaultFallbackController#index as HTML
1887
+ Completed 200 OK in 140ms (Views: 138.7ms)
1888
+ Processing by DefaultFallbackController#index as HTML
1889
+ Completed 200 OK in 3ms (Views: 3.1ms)
1890
+ Processing by DefaultFallbackController#test as HTML
1891
+ Completed 200 OK in 4ms (Views: 3.3ms)
1892
+ Processing by DefaultFallbackController#test as JS
1893
+ Completed 200 OK in 46ms (Views: 46.1ms)
1894
+ Processing by ForceFallbackController#index as HTML
1895
+ Completed 200 OK in 7ms (Views: 6.8ms)
1896
+ Processing by ForceFallbackController#index as HTML
1897
+ Completed 200 OK in 3ms (Views: 2.4ms)
1898
+ Processing by ForceFallbackController#test as HTML
1899
+ Completed 200 OK in 5ms (Views: 4.1ms)
1900
+ Processing by ForceFallbackController#test as HTML
1901
+ Completed 200 OK in 3ms (Views: 3.0ms)
1902
+ Processing by ForceFallbackController#test as JS
1903
+ Completed 200 OK in 4ms (Views: 3.2ms)
1904
+ Processing by HomeController#index as HTML
1905
+ Completed 200 OK in 8ms (Views: 7.9ms)
1906
+ Processing by HomeController#index as HTML
1907
+ Completed 200 OK in 2ms (Views: 1.7ms)
1908
+ Processing by HomeController#index as HTML
1909
+ Completed 200 OK in 4ms (Views: 4.0ms)
1910
+ Processing by HomeController#index as HTML
1911
+ Completed 200 OK in 3ms (Views: 2.7ms)
1912
+ Processing by HomeController#index as HTML
1913
+ Completed 200 OK in 2ms (Views: 1.4ms)
1914
+ Processing by HomeController#index as HTML
1915
+ Completed 200 OK in 3ms (Views: 2.7ms)
1916
+ Processing by HomeController#index as HTML
1917
+ Completed 200 OK in 6ms (Views: 5.2ms)
1918
+ Processing by HomeController#index as HTML
1919
+ Completed 200 OK in 2ms (Views: 1.5ms)
1920
+ Processing by HomeController#index as HTML
1921
+ Completed 200 OK in 2ms (Views: 1.5ms)
1922
+ Processing by HomeController#respond_to_test as HTML
1923
+ Completed 200 OK in 3ms (Views: 2.5ms)
1924
+ Processing by HomeController#respond_to_test as HTML
1925
+ Completed 200 OK in 5ms (Views: 4.4ms)
1926
+ Processing by HomeController#respond_to_test as MOBILE
1927
+ Completed 200 OK in 2ms (Views: 1.6ms)
1928
+ Processing by HomeController#index as JS
1929
+ Completed 200 OK in 8ms (Views: 7.7ms)
1930
+ Processing by HomeController#index as HTML
1931
+ Completed 200 OK in 3ms (Views: 2.7ms)
1932
+ Processing by HomeController#index as HTML
1933
+ Completed 200 OK in 2ms (Views: 1.5ms)
1934
+ Processing by IgnoreMobilePathController#index as HTML
1935
+ Completed 200 OK in 7ms (Views: 6.4ms)
1936
+ Processing by NoFallbackController#index as HTML
1937
+ Completed 200 OK in 8ms (Views: 6.9ms)
1938
+ Processing by NoFallbackController#index as HTML
1939
+ Completed 200 OK in 3ms (Views: 2.6ms)
1940
+ Processing by NoFallbackController#test as HTML
1941
+ Completed 500 Internal Server Error in 3ms
1942
+ Processing by NoFallbackController#test as HTML
1943
+ Completed 500 Internal Server Error in 3ms
1944
+ Processing by NoFallbackController#test as HTML
1945
+ Completed 500 Internal Server Error in 2ms
1946
+ Processing by SkipXhrRequestController#index as JS
1947
+ Completed 200 OK in 81ms (Views: 79.9ms)
1948
+ Processing by ViewPathController#index as HTML
1949
+ Completed 200 OK in 10ms (Views: 9.0ms)
1950
+ Processing by DefaultFallbackController#index as HTML
1951
+ Completed 200 OK in 152ms (Views: 150.8ms)
1952
+ Processing by DefaultFallbackController#index as HTML
1953
+ Completed 200 OK in 3ms (Views: 3.2ms)
1954
+ Processing by DefaultFallbackController#test as HTML
1955
+ Completed 200 OK in 4ms (Views: 3.6ms)
1956
+ Processing by DefaultFallbackController#test as JS
1957
+ Completed 200 OK in 48ms (Views: 47.4ms)
1958
+ Processing by ForceFallbackController#index as HTML
1959
+ Completed 200 OK in 8ms (Views: 7.3ms)
1960
+ Processing by ForceFallbackController#index as HTML
1961
+ Completed 200 OK in 4ms (Views: 3.3ms)
1962
+ Processing by ForceFallbackController#test as HTML
1963
+ Completed 200 OK in 5ms (Views: 4.1ms)
1964
+ Processing by ForceFallbackController#test as HTML
1965
+ Completed 200 OK in 3ms (Views: 2.9ms)
1966
+ Processing by ForceFallbackController#test as JS
1967
+ Completed 200 OK in 4ms (Views: 3.3ms)
1968
+ Processing by HomeController#index as HTML
1969
+ Completed 200 OK in 7ms (Views: 6.5ms)
1970
+ Processing by HomeController#index as HTML
1971
+ Completed 200 OK in 2ms (Views: 1.6ms)
1972
+ Processing by HomeController#index as HTML
1973
+ Completed 200 OK in 6ms (Views: 5.7ms)
1974
+ Processing by HomeController#index as HTML
1975
+ Completed 200 OK in 3ms (Views: 2.6ms)
1976
+ Processing by HomeController#index as HTML
1977
+ Completed 200 OK in 2ms (Views: 1.6ms)
1978
+ Processing by HomeController#index as HTML
1979
+ Completed 200 OK in 3ms (Views: 2.6ms)
1980
+ Processing by HomeController#index as HTML
1981
+ Completed 200 OK in 3ms (Views: 2.4ms)
1982
+ Processing by HomeController#index as HTML
1983
+ Completed 200 OK in 2ms (Views: 1.5ms)
1984
+ Processing by HomeController#index as HTML
1985
+ Completed 200 OK in 2ms (Views: 1.6ms)
1986
+ Processing by HomeController#respond_to_test as HTML
1987
+ Completed 200 OK in 3ms (Views: 2.4ms)
1988
+ Processing by HomeController#respond_to_test as HTML
1989
+ Completed 200 OK in 3ms (Views: 3.0ms)
1990
+ Processing by HomeController#respond_to_test as MOBILE
1991
+ Completed 500 Internal Server Error in 2ms
1992
+ Processing by HomeController#index as JS
1993
+ Completed 200 OK in 7ms (Views: 6.8ms)
1994
+ Processing by HomeController#index as HTML
1995
+ Completed 200 OK in 3ms (Views: 2.4ms)
1996
+ Processing by HomeController#index as HTML
1997
+ Completed 200 OK in 1ms (Views: 1.4ms)
1998
+ Processing by IgnoreMobilePathController#index as HTML
1999
+ Completed 200 OK in 7ms (Views: 6.8ms)
2000
+ Processing by NoFallbackController#index as HTML
2001
+ Completed 200 OK in 12ms (Views: 11.3ms)
2002
+ Processing by NoFallbackController#index as HTML
2003
+ Completed 200 OK in 3ms (Views: 2.8ms)
2004
+ Processing by NoFallbackController#test as HTML
2005
+ Completed 500 Internal Server Error in 3ms
2006
+ Processing by NoFallbackController#test as HTML
2007
+ Completed 500 Internal Server Error in 3ms
2008
+ Processing by NoFallbackController#test as HTML
2009
+ Completed 500 Internal Server Error in 2ms
2010
+ Processing by SkipXhrRequestController#index as JS
2011
+ Completed 200 OK in 11ms (Views: 10.1ms)
2012
+ Processing by ViewPathController#index as HTML
2013
+ Completed 200 OK in 10ms (Views: 9.3ms)
2014
+ Processing by HomeController#index as HTML
2015
+ Completed 200 OK in 92ms (Views: 91.0ms)
2016
+ Processing by HomeController#index as HTML
2017
+ Completed 200 OK in 2ms (Views: 1.5ms)
2018
+ Processing by HomeController#index as HTML
2019
+ Completed 200 OK in 6ms (Views: 5.9ms)
2020
+ Processing by HomeController#index as HTML
2021
+ Completed 200 OK in 3ms (Views: 2.5ms)
2022
+ Processing by HomeController#index as HTML
2023
+ Completed 200 OK in 2ms (Views: 1.5ms)
2024
+ Processing by HomeController#index as HTML
2025
+ Completed 200 OK in 3ms (Views: 2.5ms)
2026
+ Processing by HomeController#index as HTML
2027
+ Completed 200 OK in 3ms (Views: 2.4ms)
2028
+ Processing by HomeController#index as HTML
2029
+ Completed 200 OK in 2ms (Views: 1.4ms)
2030
+ Processing by HomeController#index as HTML
2031
+ Completed 200 OK in 2ms (Views: 1.4ms)
2032
+ Processing by HomeController#respond_to_test as HTML
2033
+ Completed 200 OK in 3ms (Views: 2.4ms)
2034
+ Processing by HomeController#respond_to_test as HTML
2035
+ Completed 200 OK in 4ms (Views: 3.3ms)
2036
+ Processing by HomeController#respond_to_test as MOBILE
2037
+ Completed 500 Internal Server Error in 44ms
2038
+ Processing by HomeController#index as JS
2039
+ Completed 200 OK in 9ms (Views: 9.3ms)
2040
+ Processing by HomeController#index as HTML
2041
+ Completed 200 OK in 3ms (Views: 2.6ms)
2042
+ Processing by HomeController#index as HTML
2043
+ Completed 200 OK in 2ms (Views: 1.5ms)
2044
+ Processing by HomeController#index as HTML
2045
+ Completed 200 OK in 110ms (Views: 108.8ms)
2046
+ Processing by HomeController#index as HTML
2047
+ Completed 200 OK in 2ms (Views: 1.5ms)
2048
+ Processing by HomeController#index as HTML
2049
+ Completed 200 OK in 7ms (Views: 6.4ms)
2050
+ Processing by HomeController#index as HTML
2051
+ Completed 200 OK in 6ms (Views: 3.6ms)
2052
+ Processing by HomeController#index as HTML
2053
+ Completed 200 OK in 2ms (Views: 1.5ms)
2054
+ Processing by HomeController#index as HTML
2055
+ Completed 200 OK in 4ms (Views: 3.4ms)
2056
+ Processing by HomeController#index as HTML
2057
+ Completed 200 OK in 3ms (Views: 2.7ms)
2058
+ Processing by HomeController#index as HTML
2059
+ Completed 200 OK in 2ms (Views: 1.5ms)
2060
+ Processing by HomeController#index as HTML
2061
+ Completed 200 OK in 2ms (Views: 1.4ms)
2062
+ Processing by HomeController#respond_to_test as HTML
2063
+ Completed 200 OK in 461983ms (Views: 23.1ms)
2064
+ Processing by HomeController#respond_to_test as HTML
2065
+ Completed 200 OK in 90796ms (Views: 6.2ms)
2066
+ Processing by HomeController#respond_to_test as MOBILE
2067
+ Completed 500 Internal Server Error in 1735ms
2068
+ Processing by HomeController#index as JS
2069
+ Completed 200 OK in 19ms (Views: 18.8ms)
2070
+ Processing by HomeController#index as HTML
2071
+ Completed 200 OK in 4ms (Views: 3.7ms)
2072
+ Processing by HomeController#index as HTML
2073
+ Completed 200 OK in 3ms (Views: 2.3ms)
2074
+ Processing by HomeController#index as HTML
2075
+ Completed 200 OK in 91ms (Views: 90.0ms)
2076
+ Processing by HomeController#index as HTML
2077
+ Completed 200 OK in 2ms (Views: 1.4ms)
2078
+ Processing by HomeController#index as HTML
2079
+ Completed 200 OK in 6ms (Views: 5.2ms)
2080
+ Processing by HomeController#index as HTML
2081
+ Completed 200 OK in 3ms (Views: 2.8ms)
2082
+ Processing by HomeController#index as HTML
2083
+ Completed 200 OK in 2ms (Views: 1.5ms)
2084
+ Processing by HomeController#index as HTML
2085
+ Completed 200 OK in 3ms (Views: 2.7ms)
2086
+ Processing by HomeController#index as HTML
2087
+ Completed 200 OK in 3ms (Views: 2.5ms)
2088
+ Processing by HomeController#index as HTML
2089
+ Completed 200 OK in 2ms (Views: 1.4ms)
2090
+ Processing by HomeController#index as HTML
2091
+ Completed 200 OK in 2ms (Views: 1.5ms)
2092
+ Processing by HomeController#respond_to_test as HTML
2093
+ Completed 200 OK in 4ms (Views: 3.3ms)
2094
+ Processing by HomeController#respond_to_test as HTML
2095
+ Completed 200 OK in 3ms (Views: 2.7ms)
2096
+ Processing by HomeController#respond_to_test as MOBILE
2097
+ Completed 200 OK in 3ms (Views: 2.7ms)
2098
+ Processing by HomeController#index as JS
2099
+ Completed 200 OK in 48ms (Views: 47.6ms)
2100
+ Processing by HomeController#index as HTML
2101
+ Completed 200 OK in 3ms (Views: 2.6ms)
2102
+ Processing by HomeController#index as HTML
2103
+ Completed 200 OK in 2ms (Views: 1.4ms)
2104
+ Processing by HomeController#index as HTML
2105
+ Completed 200 OK in 97ms (Views: 96.7ms)
2106
+ Processing by HomeController#index as HTML
2107
+ Completed 200 OK in 2ms (Views: 1.6ms)
2108
+ Processing by HomeController#index as HTML
2109
+ Completed 200 OK in 8ms (Views: 7.6ms)
2110
+ Processing by HomeController#index as HTML
2111
+ Completed 200 OK in 3ms (Views: 2.8ms)
2112
+ Processing by HomeController#index as HTML
2113
+ Completed 200 OK in 2ms (Views: 1.4ms)
2114
+ Processing by HomeController#index as HTML
2115
+ Completed 200 OK in 3ms (Views: 2.4ms)
2116
+ Processing by HomeController#index as HTML
2117
+ Completed 200 OK in 3ms (Views: 2.8ms)
2118
+ Processing by HomeController#index as HTML
2119
+ Completed 200 OK in 2ms (Views: 1.8ms)
2120
+ Processing by HomeController#index as HTML
2121
+ Completed 200 OK in 2ms (Views: 1.6ms)
2122
+ Processing by HomeController#respond_to_test as HTML
2123
+ Completed 200 OK in 3ms (Views: 2.7ms)
2124
+ Processing by HomeController#respond_to_test as HTML
2125
+ Completed 200 OK in 4ms (Views: 3.1ms)
2126
+ Processing by HomeController#respond_to_test as MOBILE
2127
+ Completed 200 OK in 3ms (Views: 2.5ms)
2128
+ Processing by HomeController#index as JS
2129
+ Completed 200 OK in 49ms (Views: 49.1ms)
2130
+ Processing by HomeController#index as HTML
2131
+ Completed 200 OK in 3ms (Views: 2.4ms)
2132
+ Processing by HomeController#index as HTML
2133
+ Completed 200 OK in 1ms (Views: 1.4ms)
2134
+ Processing by HomeController#index as HTML
2135
+ Completed 200 OK in 89ms (Views: 87.8ms)
2136
+ Processing by HomeController#index as HTML
2137
+ Completed 200 OK in 2ms (Views: 1.4ms)
2138
+ Processing by HomeController#index as HTML
2139
+ Completed 200 OK in 6ms (Views: 6.0ms)
2140
+ Processing by HomeController#index as HTML
2141
+ Completed 200 OK in 3ms (Views: 2.5ms)
2142
+ Processing by HomeController#index as HTML
2143
+ Completed 200 OK in 2ms (Views: 1.4ms)
2144
+ Processing by HomeController#index as HTML
2145
+ Completed 200 OK in 3ms (Views: 2.8ms)
2146
+ Processing by HomeController#index as HTML
2147
+ Completed 200 OK in 3ms (Views: 2.4ms)
2148
+ Processing by HomeController#index as HTML
2149
+ Completed 200 OK in 2ms (Views: 1.8ms)
2150
+ Processing by HomeController#index as HTML
2151
+ Completed 200 OK in 2ms (Views: 1.5ms)
2152
+ Processing by HomeController#respond_to_test as HTML
2153
+ Completed 200 OK in 3ms (Views: 2.2ms)
2154
+ Processing by HomeController#respond_to_test as HTML
2155
+ Completed 200 OK in 4ms (Views: 3.3ms)
2156
+ Processing by HomeController#respond_to_test as MOBILE
2157
+ Completed 500 Internal Server Error in 42ms
2158
+ Processing by HomeController#index as JS
2159
+ Completed 200 OK in 9ms (Views: 8.5ms)
2160
+ Processing by HomeController#index as HTML
2161
+ Completed 200 OK in 3ms (Views: 2.4ms)
2162
+ Processing by HomeController#index as HTML
2163
+ Completed 200 OK in 2ms (Views: 1.4ms)
2164
+ Processing by HomeController#index as HTML
2165
+ Completed 200 OK in 87ms (Views: 86.8ms)
2166
+ Processing by HomeController#index as HTML
2167
+ Completed 200 OK in 2ms (Views: 1.4ms)
2168
+ Processing by HomeController#index as HTML
2169
+ Completed 200 OK in 6ms (Views: 5.7ms)
2170
+ Processing by HomeController#index as HTML
2171
+ Completed 200 OK in 3ms (Views: 2.5ms)
2172
+ Processing by HomeController#index as HTML
2173
+ Completed 200 OK in 2ms (Views: 1.6ms)
2174
+ Processing by HomeController#index as HTML
2175
+ Completed 200 OK in 3ms (Views: 2.4ms)
2176
+ Processing by HomeController#index as HTML
2177
+ Completed 200 OK in 3ms (Views: 2.9ms)
2178
+ Processing by HomeController#index as HTML
2179
+ Completed 200 OK in 2ms (Views: 1.5ms)
2180
+ Processing by HomeController#index as HTML
2181
+ Completed 200 OK in 2ms (Views: 1.4ms)
2182
+ Processing by HomeController#respond_to_test as HTML
2183
+ Completed 200 OK in 3ms (Views: 2.3ms)
2184
+ Processing by HomeController#respond_to_test as HTML
2185
+ Completed 200 OK in 3ms (Views: 2.7ms)
2186
+ Processing by HomeController#respond_to_test as MOBILE
2187
+ Completed 500 Internal Server Error in 43ms
2188
+ Processing by HomeController#index as JS
2189
+ Completed 200 OK in 9ms (Views: 8.7ms)
2190
+ Processing by HomeController#index as HTML
2191
+ Completed 200 OK in 3ms (Views: 2.9ms)
2192
+ Processing by HomeController#index as HTML
2193
+ Completed 200 OK in 2ms (Views: 1.6ms)
2194
+ Processing by HomeController#index as HTML
2195
+ Completed 200 OK in 95ms (Views: 94.0ms)
2196
+ Processing by HomeController#index as HTML
2197
+ Completed 200 OK in 2ms (Views: 1.5ms)
2198
+ Processing by HomeController#index as HTML
2199
+ Completed 200 OK in 6ms (Views: 5.8ms)
2200
+ Processing by HomeController#index as HTML
2201
+ Completed 200 OK in 3ms (Views: 2.6ms)
2202
+ Processing by HomeController#index as HTML
2203
+ Completed 200 OK in 2ms (Views: 1.5ms)
2204
+ Processing by HomeController#index as HTML
2205
+ Completed 200 OK in 3ms (Views: 2.5ms)
2206
+ Processing by HomeController#index as HTML
2207
+ Completed 200 OK in 3ms (Views: 2.6ms)
2208
+ Processing by HomeController#index as HTML
2209
+ Completed 200 OK in 2ms (Views: 1.4ms)
2210
+ Processing by HomeController#index as HTML
2211
+ Completed 200 OK in 2ms (Views: 1.5ms)
2212
+ Processing by HomeController#respond_to_test as HTML
2213
+ Completed 200 OK in 3ms (Views: 2.2ms)
2214
+ Processing by HomeController#respond_to_test as HTML
2215
+ Completed 200 OK in 3ms (Views: 2.7ms)
2216
+ Processing by HomeController#respond_to_test as MOBILE
2217
+ Completed 500 Internal Server Error in 42ms
2218
+ Processing by HomeController#index as JS
2219
+ Completed 200 OK in 8ms (Views: 8.2ms)
2220
+ Processing by HomeController#index as HTML
2221
+ Completed 200 OK in 3ms (Views: 2.8ms)
2222
+ Processing by HomeController#index as HTML
2223
+ Completed 200 OK in 1ms (Views: 1.3ms)
2224
+ Processing by HomeController#index as HTML
2225
+ Completed 200 OK in 97ms (Views: 96.5ms)
2226
+ Processing by HomeController#index as HTML
2227
+ Completed 200 OK in 2ms (Views: 1.8ms)
2228
+ Processing by HomeController#index as HTML
2229
+ Completed 200 OK in 8ms (Views: 7.9ms)
2230
+ Processing by HomeController#index as HTML
2231
+ Completed 200 OK in 3ms (Views: 2.7ms)
2232
+ Processing by HomeController#index as HTML
2233
+ Completed 200 OK in 3ms (Views: 2.9ms)
2234
+ Processing by HomeController#index as HTML
2235
+ Completed 200 OK in 3ms (Views: 3.0ms)
2236
+ Processing by HomeController#index as HTML
2237
+ Completed 200 OK in 3ms (Views: 2.7ms)
2238
+ Processing by HomeController#index as HTML
2239
+ Completed 200 OK in 2ms (Views: 2.0ms)
2240
+ Processing by HomeController#index as HTML
2241
+ Completed 200 OK in 2ms (Views: 1.7ms)
2242
+ Processing by HomeController#respond_to_test as HTML
2243
+ Completed 200 OK in 3ms (Views: 2.4ms)
2244
+ Processing by HomeController#respond_to_test as HTML
2245
+ Completed 200 OK in 7ms (Views: 6.0ms)
2246
+ Processing by HomeController#respond_to_test as MOBILE
2247
+ Completed 200 OK in 5ms (Views: 3.9ms)
2248
+ Processing by HomeController#index as JS
2249
+ Completed 200 OK in 61ms (Views: 60.3ms)
2250
+ Processing by HomeController#index as HTML
2251
+ Completed 200 OK in 3ms (Views: 2.5ms)
2252
+ Processing by HomeController#index as HTML
2253
+ Completed 200 OK in 2ms (Views: 1.7ms)
2254
+ Processing by DefaultFallbackController#index as HTML
2255
+ Completed 200 OK in 148ms (Views: 146.3ms)
2256
+ Processing by DefaultFallbackController#index as HTML
2257
+ Completed 200 OK in 4ms (Views: 3.2ms)
2258
+ Processing by DefaultFallbackController#test as HTML
2259
+ Completed 200 OK in 4ms (Views: 3.5ms)
2260
+ Processing by DefaultFallbackController#test as JS
2261
+ Completed 200 OK in 48ms (Views: 47.9ms)
2262
+ Processing by ForceFallbackController#index as HTML
2263
+ Completed 200 OK in 9ms (Views: 8.0ms)
2264
+ Processing by ForceFallbackController#index as HTML
2265
+ Completed 200 OK in 3ms (Views: 2.7ms)
2266
+ Processing by ForceFallbackController#test as HTML
2267
+ Completed 200 OK in 5ms (Views: 4.1ms)
2268
+ Processing by ForceFallbackController#test as HTML
2269
+ Completed 200 OK in 4ms (Views: 3.6ms)
2270
+ Processing by ForceFallbackController#test as JS
2271
+ Completed 200 OK in 3ms (Views: 3.0ms)
2272
+ Processing by HomeController#index as HTML
2273
+ Completed 200 OK in 7ms (Views: 6.4ms)
2274
+ Processing by HomeController#index as HTML
2275
+ Completed 200 OK in 2ms (Views: 1.5ms)
2276
+ Processing by HomeController#index as HTML
2277
+ Completed 200 OK in 5ms (Views: 4.2ms)
2278
+ Processing by HomeController#index as HTML
2279
+ Completed 200 OK in 4ms (Views: 3.2ms)
2280
+ Processing by HomeController#index as HTML
2281
+ Completed 200 OK in 2ms (Views: 1.4ms)
2282
+ Processing by HomeController#index as HTML
2283
+ Completed 200 OK in 3ms (Views: 2.7ms)
2284
+ Processing by HomeController#index as HTML
2285
+ Completed 200 OK in 3ms (Views: 2.5ms)
2286
+ Processing by HomeController#index as HTML
2287
+ Completed 200 OK in 2ms (Views: 1.4ms)
2288
+ Processing by HomeController#index as HTML
2289
+ Completed 200 OK in 2ms (Views: 1.6ms)
2290
+ Processing by HomeController#respond_to_test as HTML
2291
+ Completed 200 OK in 4ms (Views: 2.9ms)
2292
+ Processing by HomeController#respond_to_test as HTML
2293
+ Completed 200 OK in 4ms (Views: 3.1ms)
2294
+ Processing by HomeController#respond_to_test as MOBILE
2295
+ Completed 200 OK in 4ms (Views: 3.2ms)
2296
+ Processing by HomeController#index as JS
2297
+ Completed 200 OK in 7ms (Views: 6.7ms)
2298
+ Processing by HomeController#index as HTML
2299
+ Completed 200 OK in 3ms (Views: 2.5ms)
2300
+ Processing by HomeController#index as HTML
2301
+ Completed 200 OK in 2ms (Views: 1.5ms)
2302
+ Processing by IgnoreMobilePathController#index as HTML
2303
+ Completed 200 OK in 7ms (Views: 6.5ms)
2304
+ Processing by NoFallbackController#index as HTML
2305
+ Completed 200 OK in 8ms (Views: 7.6ms)
2306
+ Processing by NoFallbackController#index as HTML
2307
+ Completed 200 OK in 3ms (Views: 2.6ms)
2308
+ Processing by NoFallbackController#test as HTML
2309
+ Completed 500 Internal Server Error in 3ms
2310
+ Processing by NoFallbackController#test as HTML
2311
+ Completed 500 Internal Server Error in 2ms
2312
+ Processing by NoFallbackController#test as HTML
2313
+ Completed 500 Internal Server Error in 2ms
2314
+ Processing by SkipXhrRequestController#index as JS
2315
+ Completed 200 OK in 10ms (Views: 8.9ms)
2316
+ Processing by ViewPathController#index as HTML
2317
+ Completed 200 OK in 8ms (Views: 7.2ms)
2318
+ Processing by DefaultFallbackController#index as HTML
2319
+ Completed 200 OK in 154ms (Views: 95.9ms)
2320
+ Processing by DefaultFallbackController#index as HTML
2321
+ Completed 500 Internal Server Error in 0ms
2322
+ Processing by DefaultFallbackController#test as HTML
2323
+ Completed 200 OK in 5ms (Views: 4.1ms)
2324
+ Processing by DefaultFallbackController#test as JS
2325
+ Completed 200 OK in 48ms (Views: 47.8ms)
2326
+ Processing by ForceFallbackController#index as HTML
2327
+ Completed 200 OK in 9ms (Views: 8.2ms)
2328
+ Processing by ForceFallbackController#index as HTML
2329
+ Completed 500 Internal Server Error in 0ms
2330
+ Processing by ForceFallbackController#test as HTML
2331
+ Completed 200 OK in 4ms (Views: 3.9ms)
2332
+ Processing by ForceFallbackController#test as HTML
2333
+ Completed 200 OK in 4ms (Views: 3.1ms)
2334
+ Processing by ForceFallbackController#test as JS
2335
+ Completed 200 OK in 3ms (Views: 3.1ms)
2336
+ Processing by HomeController#index as HTML
2337
+ Completed 500 Internal Server Error in 1ms
2338
+ Processing by HomeController#index as HTML
2339
+ Completed 500 Internal Server Error in 1ms
2340
+ Processing by HomeController#index as HTML
2341
+ Completed 200 OK in 9ms (Views: 8.9ms)
2342
+ Processing by HomeController#index as HTML
2343
+ Completed 200 OK in 3ms (Views: 2.4ms)
2344
+ Processing by HomeController#index as HTML
2345
+ Completed 500 Internal Server Error in 0ms
2346
+ Processing by HomeController#index as HTML
2347
+ Completed 200 OK in 3ms (Views: 2.4ms)
2348
+ Processing by HomeController#index as HTML
2349
+ Completed 200 OK in 3ms (Views: 2.5ms)
2350
+ Processing by HomeController#index as HTML
2351
+ Completed 500 Internal Server Error in 0ms
2352
+ Processing by HomeController#index as HTML
2353
+ Completed 500 Internal Server Error in 0ms
2354
+ Processing by HomeController#respond_to_test as HTML
2355
+ Completed 500 Internal Server Error in 1ms
2356
+ Processing by HomeController#respond_to_test as HTML
2357
+ Completed 200 OK in 3ms (Views: 3.0ms)
2358
+ Processing by HomeController#respond_to_test as MOBILE
2359
+ Completed 200 OK in 3ms (Views: 3.0ms)
2360
+ Processing by HomeController#index as JS
2361
+ Completed 200 OK in 7ms (Views: 6.9ms)
2362
+ Processing by HomeController#index as HTML
2363
+ Completed 200 OK in 3ms (Views: 2.5ms)
2364
+ Processing by HomeController#index as HTML
2365
+ Completed 200 OK in 3ms (Views: 2.5ms)
2366
+ Processing by IgnoreMobilePathController#index as HTML
2367
+ Completed 200 OK in 7ms (Views: 6.2ms)
2368
+ Processing by NoFallbackController#index as HTML
2369
+ Completed 200 OK in 7ms (Views: 6.6ms)
2370
+ Processing by NoFallbackController#index as HTML
2371
+ Completed 500 Internal Server Error in 0ms
2372
+ Processing by NoFallbackController#test as HTML
2373
+ Completed 500 Internal Server Error in 3ms
2374
+ Processing by NoFallbackController#test as HTML
2375
+ Completed 500 Internal Server Error in 2ms
2376
+ Processing by NoFallbackController#test as HTML
2377
+ Completed 500 Internal Server Error in 2ms
2378
+ Processing by SkipXhrRequestController#index as JS
2379
+ Completed 200 OK in 12ms (Views: 10.8ms)
2380
+ Processing by ViewPathController#index as HTML
2381
+ Completed 200 OK in 8ms (Views: 6.4ms)
2382
+ Processing by DefaultFallbackController#index as HTML
2383
+ Completed 200 OK in 152ms (Views: 151.5ms)
2384
+ Processing by DefaultFallbackController#index as HTML
2385
+ Completed 200 OK in 3ms (Views: 3.2ms)
2386
+ Processing by DefaultFallbackController#test as HTML
2387
+ Completed 200 OK in 4ms (Views: 3.5ms)
2388
+ Processing by DefaultFallbackController#test as JS
2389
+ Completed 200 OK in 50ms (Views: 48.8ms)
2390
+ Processing by ForceFallbackController#index as HTML
2391
+ Completed 200 OK in 8ms (Views: 7.5ms)
2392
+ Processing by ForceFallbackController#index as HTML
2393
+ Completed 200 OK in 3ms (Views: 3.0ms)
2394
+ Processing by ForceFallbackController#test as HTML
2395
+ Completed 200 OK in 5ms (Views: 4.2ms)
2396
+ Processing by ForceFallbackController#test as HTML
2397
+ Completed 200 OK in 3ms (Views: 3.0ms)
2398
+ Processing by ForceFallbackController#test as JS
2399
+ Completed 200 OK in 3ms (Views: 3.0ms)
2400
+ Processing by HomeController#index as HTML
2401
+ Completed 200 OK in 8ms (Views: 6.9ms)
2402
+ Processing by HomeController#index as HTML
2403
+ Completed 200 OK in 2ms (Views: 1.5ms)
2404
+ Processing by HomeController#index as HTML
2405
+ Completed 200 OK in 5ms (Views: 4.3ms)
2406
+ Processing by HomeController#index as HTML
2407
+ Completed 200 OK in 4ms (Views: 3.1ms)
2408
+ Processing by HomeController#index as HTML
2409
+ Completed 200 OK in 4ms (Views: 3.0ms)
2410
+ Processing by HomeController#index as HTML
2411
+ Completed 200 OK in 3ms (Views: 2.5ms)
2412
+ Processing by HomeController#index as HTML
2413
+ Completed 200 OK in 3ms (Views: 2.6ms)
2414
+ Processing by HomeController#index as HTML
2415
+ Completed 200 OK in 2ms (Views: 1.6ms)
2416
+ Processing by HomeController#index as HTML
2417
+ Completed 200 OK in 2ms (Views: 1.6ms)
2418
+ Processing by HomeController#respond_to_test as HTML
2419
+ Completed 200 OK in 3ms (Views: 2.4ms)
2420
+ Processing by HomeController#respond_to_test as HTML
2421
+ Completed 200 OK in 3ms (Views: 2.9ms)
2422
+ Processing by HomeController#respond_to_test as MOBILE
2423
+ Completed 200 OK in 3ms (Views: 2.5ms)
2424
+ Processing by HomeController#index as JS
2425
+ Completed 200 OK in 7ms (Views: 6.4ms)
2426
+ Processing by HomeController#index as HTML
2427
+ Completed 200 OK in 3ms (Views: 2.4ms)
2428
+ Processing by HomeController#index as HTML
2429
+ Completed 200 OK in 2ms (Views: 1.5ms)
2430
+ Processing by IgnoreMobilePathController#index as HTML
2431
+ Completed 200 OK in 7ms (Views: 6.6ms)
2432
+ Processing by NoFallbackController#index as HTML
2433
+ Completed 200 OK in 9ms (Views: 8.4ms)
2434
+ Processing by NoFallbackController#index as HTML
2435
+ Completed 200 OK in 3ms (Views: 2.4ms)
2436
+ Processing by NoFallbackController#test as HTML
2437
+ Completed 500 Internal Server Error in 58ms
2438
+ Processing by NoFallbackController#test as HTML
2439
+ Completed 500 Internal Server Error in 2ms
2440
+ Processing by NoFallbackController#test as HTML
2441
+ Completed 500 Internal Server Error in 3ms
2442
+ Processing by SkipXhrRequestController#index as JS
2443
+ Completed 200 OK in 8ms (Views: 7.3ms)
2444
+ Processing by ViewPathController#index as HTML
2445
+ Completed 200 OK in 7ms (Views: 6.5ms)
2446
+ Processing by DefaultFallbackController#index as HTML
2447
+ Completed 200 OK in 142ms (Views: 141.6ms)
2448
+ Processing by DefaultFallbackController#index as HTML
2449
+ Completed 200 OK in 10ms (Views: 9.4ms)
2450
+ Processing by DefaultFallbackController#test as HTML
2451
+ Completed 200 OK in 5ms (Views: 4.0ms)
2452
+ Processing by DefaultFallbackController#test as JS
2453
+ Completed 200 OK in 50ms (Views: 49.5ms)
2454
+ Processing by ForceFallbackController#index as HTML
2455
+ Completed 200 OK in 12ms (Views: 11.7ms)
2456
+ Processing by ForceFallbackController#index as HTML
2457
+ Completed 200 OK in 3ms (Views: 2.6ms)
2458
+ Processing by ForceFallbackController#test as HTML
2459
+ Completed 200 OK in 11ms (Views: 10.0ms)
2460
+ Processing by ForceFallbackController#test as HTML
2461
+ Completed 200 OK in 5ms (Views: 4.7ms)
2462
+ Processing by ForceFallbackController#test as JS
2463
+ Completed 200 OK in 4ms (Views: 3.3ms)
2464
+ Processing by HomeController#index as HTML
2465
+ Completed 200 OK in 8ms (Views: 6.8ms)
2466
+ Processing by HomeController#index as HTML
2467
+ Completed 200 OK in 2ms (Views: 1.6ms)
2468
+ Processing by HomeController#index as HTML
2469
+ Completed 200 OK in 15ms (Views: 14.6ms)
2470
+ Processing by HomeController#index as HTML
2471
+ Completed 200 OK in 4ms (Views: 3.3ms)
2472
+ Processing by HomeController#index as HTML
2473
+ Completed 200 OK in 2ms (Views: 1.6ms)
2474
+ Processing by HomeController#index as HTML
2475
+ Completed 200 OK in 3ms (Views: 2.7ms)
2476
+ Processing by HomeController#index as HTML
2477
+ Completed 200 OK in 3ms (Views: 2.7ms)
2478
+ Processing by HomeController#index as HTML
2479
+ Completed 200 OK in 2ms (Views: 1.6ms)
2480
+ Processing by HomeController#index as HTML
2481
+ Completed 200 OK in 2ms (Views: 1.6ms)
2482
+ Processing by HomeController#respond_to_test as HTML
2483
+ Completed 200 OK in 4ms (Views: 3.0ms)
2484
+ Processing by HomeController#respond_to_test as HTML
2485
+ Completed 200 OK in 34ms (Views: 33.2ms)
2486
+ Processing by HomeController#respond_to_test as MOBILE
2487
+ Completed 200 OK in 4ms (Views: 3.3ms)
2488
+ Processing by HomeController#index as JS
2489
+ Completed 200 OK in 11ms (Views: 11.2ms)
2490
+ Processing by HomeController#index as HTML
2491
+ Completed 200 OK in 3ms (Views: 2.8ms)
2492
+ Processing by HomeController#index as HTML
2493
+ Completed 200 OK in 2ms (Views: 1.6ms)
2494
+ Processing by IgnoreMobilePathController#index as HTML
2495
+ Completed 200 OK in 8ms (Views: 7.3ms)
2496
+ Processing by NoFallbackController#index as HTML
2497
+ Completed 200 OK in 8ms (Views: 7.3ms)
2498
+ Processing by NoFallbackController#index as HTML
2499
+ Completed 200 OK in 3ms (Views: 3.0ms)
2500
+ Processing by NoFallbackController#test as HTML
2501
+ Completed 500 Internal Server Error in 59ms
2502
+ Processing by NoFallbackController#test as HTML
2503
+ Completed 500 Internal Server Error in 2ms
2504
+ Processing by NoFallbackController#test as HTML
2505
+ Completed 500 Internal Server Error in 2ms
2506
+ Processing by SkipXhrRequestController#index as JS
2507
+ Completed 200 OK in 10ms (Views: 8.8ms)
2508
+ Processing by ViewPathController#index as HTML
2509
+ Completed 200 OK in 8ms (Views: 7.0ms)
2510
+ Processing by DefaultFallbackController#index as HTML
2511
+ Completed 200 OK in 143ms (Views: 91.7ms)
2512
+ Processing by DefaultFallbackController#index as HTML
2513
+ Completed 200 OK in 4ms (Views: 3.6ms)
2514
+ Processing by DefaultFallbackController#test as HTML
2515
+ Completed 200 OK in 4ms (Views: 3.4ms)
2516
+ Processing by DefaultFallbackController#test as JS
2517
+ Completed 200 OK in 49ms (Views: 48.9ms)
2518
+ Processing by ForceFallbackController#index as HTML
2519
+ Completed 200 OK in 8ms (Views: 7.8ms)
2520
+ Processing by ForceFallbackController#index as HTML
2521
+ Completed 200 OK in 3ms (Views: 2.9ms)
2522
+ Processing by ForceFallbackController#test as HTML
2523
+ Completed 200 OK in 5ms (Views: 4.2ms)
2524
+ Processing by ForceFallbackController#test as HTML
2525
+ Completed 200 OK in 4ms (Views: 3.4ms)
2526
+ Processing by ForceFallbackController#test as JS
2527
+ Completed 200 OK in 4ms (Views: 3.1ms)
2528
+ Processing by HomeController#index as HTML
2529
+ Completed 200 OK in 8ms (Views: 7.0ms)
2530
+ Processing by HomeController#index as HTML
2531
+ Completed 200 OK in 2ms (Views: 1.5ms)
2532
+ Processing by HomeController#index as HTML
2533
+ Completed 200 OK in 5ms (Views: 4.3ms)
2534
+ Processing by HomeController#index as HTML
2535
+ Completed 200 OK in 3ms (Views: 2.9ms)
2536
+ Processing by HomeController#index as HTML
2537
+ Completed 200 OK in 2ms (Views: 1.5ms)
2538
+ Processing by HomeController#index as HTML
2539
+ Completed 200 OK in 6ms (Views: 3.2ms)
2540
+ Processing by HomeController#index as HTML
2541
+ Completed 200 OK in 3ms (Views: 2.8ms)
2542
+ Processing by HomeController#index as HTML
2543
+ Completed 200 OK in 2ms (Views: 1.5ms)
2544
+ Processing by HomeController#index as HTML
2545
+ Completed 200 OK in 2ms (Views: 1.9ms)
2546
+ Processing by HomeController#respond_to_test as HTML
2547
+ Completed 200 OK in 3ms (Views: 2.6ms)
2548
+ Processing by HomeController#respond_to_test as HTML
2549
+ Completed 200 OK in 3ms (Views: 3.0ms)
2550
+ Processing by HomeController#respond_to_test as MOBILE
2551
+ Completed 500 Internal Server Error in 2ms
2552
+ Processing by HomeController#index as JS
2553
+ Completed 200 OK in 7ms (Views: 6.6ms)
2554
+ Processing by HomeController#index as HTML
2555
+ Completed 200 OK in 3ms (Views: 2.5ms)
2556
+ Processing by HomeController#index as HTML
2557
+ Completed 200 OK in 2ms (Views: 1.5ms)
2558
+ Processing by IgnoreMobilePathController#index as HTML
2559
+ Completed 200 OK in 6ms (Views: 5.8ms)
2560
+ Processing by NoFallbackController#index as HTML
2561
+ Completed 200 OK in 8ms (Views: 7.5ms)
2562
+ Processing by NoFallbackController#index as HTML
2563
+ Completed 200 OK in 3ms (Views: 2.4ms)
2564
+ Processing by NoFallbackController#test as HTML
2565
+ Completed 500 Internal Server Error in 65ms
2566
+ Processing by NoFallbackController#test as HTML
2567
+ Completed 500 Internal Server Error in 2ms
2568
+ Processing by NoFallbackController#test as HTML
2569
+ Completed 500 Internal Server Error in 2ms
2570
+ Processing by SkipXhrRequestController#index as JS
2571
+ Completed 200 OK in 9ms (Views: 8.8ms)
2572
+ Processing by ViewPathController#index as HTML
2573
+ Completed 200 OK in 9ms (Views: 8.6ms)
2574
+ Processing by DefaultFallbackController#index as HTML
2575
+ Completed 200 OK in 116ms (Views: 115.9ms)
2576
+ Processing by DefaultFallbackController#index as HTML
2577
+ Completed 200 OK in 3ms (Views: 3.1ms)
2578
+ Processing by DefaultFallbackController#test as HTML
2579
+ Completed 200 OK in 3ms (Views: 2.2ms)
2580
+ Processing by DefaultFallbackController#test as JS
2581
+ Completed 200 OK in 39ms (Views: 38.8ms)
2582
+ Processing by ForceFallbackController#index as HTML
2583
+ Completed 200 OK in 7ms (Views: 6.5ms)
2584
+ Processing by ForceFallbackController#index as HTML
2585
+ Completed 200 OK in 3ms (Views: 2.3ms)
2586
+ Processing by ForceFallbackController#test as HTML
2587
+ Completed 200 OK in 2ms (Views: 1.7ms)
2588
+ Processing by ForceFallbackController#test as HTML
2589
+ Completed 200 OK in 1ms (Views: 0.8ms)
2590
+ Processing by ForceFallbackController#test as JS
2591
+ Completed 200 OK in 1ms (Views: 0.7ms)
2592
+ Processing by HomeController#index as HTML
2593
+ Completed 200 OK in 6ms (Views: 5.2ms)
2594
+ Processing by HomeController#index as HTML
2595
+ Completed 200 OK in 2ms (Views: 1.3ms)
2596
+ Processing by HomeController#index as HTML
2597
+ Completed 200 OK in 3ms (Views: 2.8ms)
2598
+ Processing by HomeController#index as HTML
2599
+ Completed 200 OK in 2ms (Views: 1.3ms)
2600
+ Processing by HomeController#index as HTML
2601
+ Completed 200 OK in 2ms (Views: 1.4ms)
2602
+ Processing by HomeController#index as HTML
2603
+ Completed 200 OK in 2ms (Views: 1.4ms)
2604
+ Processing by HomeController#index as HTML
2605
+ Completed 200 OK in 2ms (Views: 1.4ms)
2606
+ Processing by HomeController#index as HTML
2607
+ Completed 200 OK in 2ms (Views: 1.5ms)
2608
+ Processing by HomeController#index as HTML
2609
+ Completed 200 OK in 2ms (Views: 1.3ms)
2610
+ Processing by HomeController#respond_to_test as HTML
2611
+ Completed 200 OK in 3ms (Views: 2.2ms)
2612
+ Processing by HomeController#respond_to_test as HTML
2613
+ Completed 200 OK in 3ms (Views: 2.3ms)
2614
+ Processing by HomeController#respond_to_test as MOBILE
2615
+ Completed 200 OK in 2ms (Views: 1.3ms)
2616
+ Processing by HomeController#index as JS
2617
+ Completed 200 OK in 7ms (Views: 6.6ms)
2618
+ Processing by HomeController#index as HTML
2619
+ Completed 200 OK in 5ms (Views: 4.8ms)
2620
+ Processing by HomeController#index as HTML
2621
+ Completed 200 OK in 2ms (Views: 2.3ms)
2622
+ Processing by NoFallbackController#index as HTML
2623
+ Completed 200 OK in 6ms (Views: 5.6ms)
2624
+ Processing by NoFallbackController#index as HTML
2625
+ Completed 200 OK in 3ms (Views: 2.4ms)
2626
+ Processing by NoFallbackController#test as HTML
2627
+ Completed 500 Internal Server Error in 2ms
2628
+ Processing by NoFallbackController#test as HTML
2629
+ Completed 500 Internal Server Error in 1ms
2630
+ Processing by NoFallbackController#test as HTML
2631
+ Completed 500 Internal Server Error in 1ms
2632
+ Processing by SkipXhrRequestController#index as JS
2633
+ Completed 200 OK in 7ms (Views: 6.5ms)
2634
+ Processing by DefaultFallbackController#index as HTML
2635
+ Completed 200 OK in 182ms (Views: 181.2ms)
2636
+ Processing by DefaultFallbackController#index as HTML
2637
+ Completed 200 OK in 5ms (Views: 4.3ms)
2638
+ Processing by DefaultFallbackController#test as HTML
2639
+ Completed 200 OK in 4ms (Views: 3.7ms)
2640
+ Processing by DefaultFallbackController#test as JS
2641
+ Completed 200 OK in 43ms (Views: 42.9ms)
2642
+ Processing by ForceFallbackController#index as HTML
2643
+ Completed 200 OK in 9ms (Views: 7.4ms)
2644
+ Processing by ForceFallbackController#index as HTML
2645
+ Completed 200 OK in 3ms (Views: 2.6ms)
2646
+ Processing by ForceFallbackController#test as HTML
2647
+ Completed 200 OK in 6ms (Views: 5.1ms)
2648
+ Processing by ForceFallbackController#test as HTML
2649
+ Completed 200 OK in 3ms (Views: 2.8ms)
2650
+ Processing by ForceFallbackController#test as JS
2651
+ Completed 200 OK in 4ms (Views: 3.1ms)
2652
+ Processing by HomeController#index as HTML
2653
+ Completed 200 OK in 7ms (Views: 6.0ms)
2654
+ Processing by HomeController#index as HTML
2655
+ Completed 200 OK in 2ms (Views: 1.7ms)
2656
+ Processing by HomeController#index as HTML
2657
+ Completed 200 OK in 5ms (Views: 4.4ms)
2658
+ Processing by HomeController#index as HTML
2659
+ Completed 200 OK in 8ms (Views: 6.6ms)
2660
+ Processing by HomeController#index as HTML
2661
+ Completed 200 OK in 2ms (Views: 1.5ms)
2662
+ Processing by HomeController#index as HTML
2663
+ Completed 200 OK in 4ms (Views: 4.1ms)
2664
+ Processing by HomeController#index as HTML
2665
+ Completed 200 OK in 3ms (Views: 2.7ms)
2666
+ Processing by HomeController#index as HTML
2667
+ Completed 200 OK in 2ms (Views: 1.4ms)
2668
+ Processing by HomeController#index as HTML
2669
+ Completed 200 OK in 2ms (Views: 1.8ms)
2670
+ Processing by HomeController#respond_to_test as HTML
2671
+ Completed 200 OK in 3ms (Views: 2.3ms)
2672
+ Processing by HomeController#respond_to_test as HTML
2673
+ Completed 200 OK in 4ms (Views: 3.3ms)
2674
+ Processing by HomeController#respond_to_test as MOBILE
2675
+ Completed 200 OK in 4ms (Views: 3.1ms)
2676
+ Processing by HomeController#index as JS
2677
+ Completed 200 OK in 7ms (Views: 6.7ms)
2678
+ Processing by HomeController#index as HTML
2679
+ Completed 200 OK in 3ms (Views: 2.8ms)
2680
+ Processing by HomeController#index as HTML
2681
+ Completed 200 OK in 2ms (Views: 1.5ms)
2682
+ Processing by IgnoreMobilePathController#index as HTML
2683
+ Completed 200 OK in 58ms (Views: 6.9ms)
2684
+ Processing by NoFallbackController#index as HTML
2685
+ Completed 200 OK in 9ms (Views: 8.0ms)
2686
+ Processing by NoFallbackController#index as HTML
2687
+ Completed 200 OK in 3ms (Views: 2.7ms)
2688
+ Processing by NoFallbackController#test as HTML
2689
+ Completed 500 Internal Server Error in 3ms
2690
+ Processing by NoFallbackController#test as HTML
2691
+ Completed 500 Internal Server Error in 2ms
2692
+ Processing by NoFallbackController#test as HTML
2693
+ Completed 500 Internal Server Error in 2ms
2694
+ Processing by SkipXhrRequestController#index as JS
2695
+ Completed 200 OK in 9ms (Views: 8.4ms)
2696
+ Processing by ViewPathController#index as HTML
2697
+ Completed 200 OK in 7ms (Views: 6.4ms)
2698
+ Processing by DefaultFallbackController#index as HTML
2699
+ Completed 200 OK in 87ms (Views: 85.7ms)
2700
+ Processing by DefaultFallbackController#index as HTML
2701
+ Completed 200 OK in 4ms (Views: 4.0ms)
2702
+ Processing by DefaultFallbackController#test as HTML
2703
+ Completed 200 OK in 4ms (Views: 3.5ms)
2704
+ Processing by DefaultFallbackController#test as JS
2705
+ Completed 200 OK in 45ms (Views: 44.2ms)
2706
+ Processing by ForceFallbackController#index as HTML
2707
+ Completed 200 OK in 9ms (Views: 8.3ms)
2708
+ Processing by ForceFallbackController#index as HTML
2709
+ Completed 200 OK in 3ms (Views: 2.5ms)
2710
+ Processing by ForceFallbackController#test as HTML
2711
+ Completed 200 OK in 5ms (Views: 4.0ms)
2712
+ Processing by ForceFallbackController#test as HTML
2713
+ Completed 200 OK in 3ms (Views: 3.0ms)
2714
+ Processing by ForceFallbackController#test as JS
2715
+ Completed 200 OK in 3ms (Views: 2.9ms)
2716
+ Processing by HomeController#index as HTML
2717
+ Completed 200 OK in 6ms (Views: 5.7ms)
2718
+ Processing by HomeController#index as HTML
2719
+ Completed 200 OK in 2ms (Views: 1.8ms)
2720
+ Processing by HomeController#index as HTML
2721
+ Completed 200 OK in 5ms (Views: 4.2ms)
2722
+ Processing by HomeController#index as HTML
2723
+ Completed 200 OK in 3ms (Views: 2.5ms)
2724
+ Processing by HomeController#index as HTML
2725
+ Completed 200 OK in 2ms (Views: 1.7ms)
2726
+ Processing by HomeController#index as HTML
2727
+ Completed 200 OK in 3ms (Views: 2.6ms)
2728
+ Processing by HomeController#index as HTML
2729
+ Completed 200 OK in 3ms (Views: 2.5ms)
2730
+ Processing by HomeController#index as HTML
2731
+ Completed 200 OK in 2ms (Views: 1.5ms)
2732
+ Processing by HomeController#index as HTML
2733
+ Completed 200 OK in 2ms (Views: 1.5ms)
2734
+ Processing by HomeController#respond_to_test as HTML
2735
+ Completed 200 OK in 3ms (Views: 2.4ms)
2736
+ Processing by HomeController#respond_to_test as HTML
2737
+ Completed 200 OK in 3ms (Views: 2.7ms)
2738
+ Processing by HomeController#respond_to_test as MOBILE
2739
+ Completed 200 OK in 3ms (Views: 2.7ms)
2740
+ Processing by HomeController#index as JS
2741
+ Completed 200 OK in 7ms (Views: 6.6ms)
2742
+ Processing by HomeController#index as HTML
2743
+ Completed 200 OK in 3ms (Views: 2.4ms)
2744
+ Processing by HomeController#index as HTML
2745
+ Completed 200 OK in 2ms (Views: 1.5ms)
2746
+ Processing by IgnoreMobilePathController#index as HTML
2747
+ Completed 200 OK in 49ms (Views: 48.2ms)
2748
+ Processing by NoFallbackController#index as HTML
2749
+ Completed 200 OK in 7ms (Views: 6.2ms)
2750
+ Processing by NoFallbackController#index as HTML
2751
+ Completed 200 OK in 3ms (Views: 2.5ms)
2752
+ Processing by NoFallbackController#test as HTML
2753
+ Completed 500 Internal Server Error in 3ms
2754
+ Processing by NoFallbackController#test as HTML
2755
+ Completed 500 Internal Server Error in 2ms
2756
+ Processing by NoFallbackController#test as HTML
2757
+ Completed 500 Internal Server Error in 2ms
2758
+ Processing by SkipXhrRequestController#index as JS
2759
+ Completed 200 OK in 7ms (Views: 6.7ms)
2760
+ Processing by ViewPathController#index as HTML
2761
+ Completed 200 OK in 8ms (Views: 6.9ms)
2762
+ Processing by DefaultFallbackController#index as HTML
2763
+ Completed 200 OK in 100ms (Views: 99.4ms)
2764
+ Processing by DefaultFallbackController#index as HTML
2765
+ Completed 200 OK in 5ms (Views: 4.6ms)
2766
+ Processing by DefaultFallbackController#test as HTML
2767
+ Completed 200 OK in 5ms (Views: 4.7ms)
2768
+ Processing by DefaultFallbackController#test as JS
2769
+ Completed 200 OK in 47ms (Views: 46.8ms)
2770
+ Processing by ForceFallbackController#index as HTML
2771
+ Completed 200 OK in 14ms (Views: 13.5ms)
2772
+ Processing by ForceFallbackController#index as HTML
2773
+ Completed 200 OK in 5ms (Views: 4.8ms)
2774
+ Processing by ForceFallbackController#test as HTML
2775
+ Completed 200 OK in 6ms (Views: 5.5ms)
2776
+ Processing by ForceFallbackController#test as HTML
2777
+ Completed 200 OK in 4ms (Views: 3.2ms)
2778
+ Processing by ForceFallbackController#test as JS
2779
+ Completed 200 OK in 5ms (Views: 4.2ms)
2780
+ Processing by HomeController#index as HTML
2781
+ Completed 200 OK in 11ms (Views: 10.5ms)
2782
+ Processing by HomeController#index as HTML
2783
+ Completed 200 OK in 2ms (Views: 1.7ms)
2784
+ Processing by HomeController#index as HTML
2785
+ Completed 200 OK in 5ms (Views: 4.3ms)
2786
+ Processing by HomeController#index as HTML
2787
+ Completed 200 OK in 3ms (Views: 2.9ms)
2788
+ Processing by HomeController#index as HTML
2789
+ Completed 200 OK in 2ms (Views: 1.8ms)
2790
+ Processing by HomeController#index as HTML
2791
+ Completed 200 OK in 3ms (Views: 2.8ms)
2792
+ Processing by HomeController#index as HTML
2793
+ Completed 200 OK in 3ms (Views: 2.4ms)
2794
+ Processing by HomeController#index as HTML
2795
+ Completed 200 OK in 2ms (Views: 1.6ms)
2796
+ Processing by HomeController#index as HTML
2797
+ Completed 200 OK in 4ms (Views: 3.5ms)
2798
+ Processing by HomeController#respond_to_test as HTML
2799
+ Completed 200 OK in 3ms (Views: 2.5ms)
2800
+ Processing by HomeController#respond_to_test as HTML
2801
+ Completed 200 OK in 4ms (Views: 3.1ms)
2802
+ Processing by HomeController#respond_to_test as MOBILE
2803
+ Completed 200 OK in 3ms (Views: 2.6ms)
2804
+ Processing by HomeController#index as JS
2805
+ Completed 200 OK in 9ms (Views: 8.8ms)
2806
+ Processing by HomeController#index as HTML
2807
+ Completed 200 OK in 3ms (Views: 3.0ms)
2808
+ Processing by HomeController#index as HTML
2809
+ Completed 200 OK in 2ms (Views: 2.1ms)
2810
+ Processing by IgnoreMobilePathController#index as HTML
2811
+ Completed 200 OK in 67ms (Views: 66.2ms)
2812
+ Processing by NoFallbackController#index as HTML
2813
+ Completed 200 OK in 10ms (Views: 9.4ms)
2814
+ Processing by NoFallbackController#index as HTML
2815
+ Completed 200 OK in 5ms (Views: 4.3ms)
2816
+ Processing by NoFallbackController#test as HTML
2817
+ Completed 500 Internal Server Error in 2ms
2818
+ Processing by NoFallbackController#test as HTML
2819
+ Completed 500 Internal Server Error in 5ms
2820
+ Processing by NoFallbackController#test as HTML
2821
+ Completed 500 Internal Server Error in 2ms
2822
+ Processing by SkipXhrRequestController#index as JS
2823
+ Completed 200 OK in 8ms (Views: 7.6ms)
2824
+ Processing by ViewPathController#index as HTML
2825
+ Completed 200 OK in 11ms (Views: 9.7ms)
2826
+ Processing by DefaultFallbackController#index as HTML
2827
+ Completed 200 OK in 154ms (Views: 153.4ms)
2828
+ Processing by DefaultFallbackController#index as HTML
2829
+ Completed 200 OK in 4ms (Views: 3.8ms)
2830
+ Processing by DefaultFallbackController#test as HTML
2831
+ Completed 200 OK in 5ms (Views: 4.2ms)
2832
+ Processing by DefaultFallbackController#test as JS
2833
+ Completed 200 OK in 47ms (Views: 46.9ms)
2834
+ Processing by ForceFallbackController#index as HTML
2835
+ Completed 200 OK in 9ms (Views: 8.2ms)
2836
+ Processing by ForceFallbackController#index as HTML
2837
+ Completed 200 OK in 4ms (Views: 3.3ms)
2838
+ Processing by ForceFallbackController#test as HTML
2839
+ Completed 200 OK in 5ms (Views: 4.5ms)
2840
+ Processing by ForceFallbackController#test as HTML
2841
+ Completed 200 OK in 4ms (Views: 3.4ms)
2842
+ Processing by ForceFallbackController#test as JS
2843
+ Completed 200 OK in 4ms (Views: 3.7ms)
2844
+ Processing by HomeController#index as HTML
2845
+ Completed 200 OK in 8ms (Views: 7.1ms)
2846
+ Processing by HomeController#index as HTML
2847
+ Completed 200 OK in 2ms (Views: 1.9ms)
2848
+ Processing by HomeController#index as HTML
2849
+ Completed 200 OK in 5ms (Views: 5.0ms)
2850
+ Processing by HomeController#index as HTML
2851
+ Completed 200 OK in 4ms (Views: 3.6ms)
2852
+ Processing by HomeController#index as HTML
2853
+ Completed 200 OK in 2ms (Views: 2.0ms)
2854
+ Processing by HomeController#index as HTML
2855
+ Completed 200 OK in 4ms (Views: 3.2ms)
2856
+ Processing by HomeController#index as HTML
2857
+ Completed 200 OK in 6ms (Views: 4.5ms)
2858
+ Processing by HomeController#index as HTML
2859
+ Completed 200 OK in 2ms (Views: 1.9ms)
2860
+ Processing by HomeController#index as HTML
2861
+ Completed 200 OK in 2ms (Views: 2.0ms)
2862
+ Processing by HomeController#respond_to_test as HTML
2863
+ Completed 200 OK in 4ms (Views: 3.0ms)
2864
+ Processing by HomeController#respond_to_test as HTML
2865
+ Completed 200 OK in 4ms (Views: 3.6ms)
2866
+ Processing by HomeController#respond_to_test as MOBILE
2867
+ Completed 200 OK in 4ms (Views: 3.4ms)
2868
+ Processing by HomeController#index as JS
2869
+ Completed 200 OK in 9ms (Views: 8.5ms)
2870
+ Processing by HomeController#index as HTML
2871
+ Completed 200 OK in 4ms (Views: 3.4ms)
2872
+ Processing by HomeController#index as HTML
2873
+ Completed 200 OK in 2ms (Views: 2.1ms)
2874
+ Processing by IgnoreMobilePathController#index as HTML
2875
+ Completed 200 OK in 9ms (Views: 8.2ms)
2876
+ Processing by NoFallbackController#index as HTML
2877
+ Completed 200 OK in 9ms (Views: 7.8ms)
2878
+ Processing by NoFallbackController#index as HTML
2879
+ Completed 200 OK in 5ms (Views: 4.4ms)
2880
+ Processing by NoFallbackController#test as HTML
2881
+ Completed 500 Internal Server Error in 3ms
2882
+ Processing by NoFallbackController#test as HTML
2883
+ Completed 500 Internal Server Error in 2ms
2884
+ Processing by NoFallbackController#test as HTML
2885
+ Completed 500 Internal Server Error in 3ms
2886
+ Processing by SkipXhrRequestController#index as JS
2887
+ Completed 200 OK in 9ms (Views: 8.2ms)
2888
+ Processing by ViewPathController#index as HTML
2889
+ Completed 200 OK in 77ms (Views: 75.9ms)