mobylette 1.2.0 → 1.2.1
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/lib/mobylette/controllers/respond_to_mobile_requests.rb +11 -3
- data/lib/mobylette/helmet/helpers.rb +3 -1
- data/lib/mobylette/railtie.rb +4 -0
- data/lib/mobylette/version.rb +1 -1
- data/spec/controllers/skip_xhr_request_controller_spec.rb +17 -0
- data/spec/dummy/app/assets/javascripts/skip_xhr_request.js +2 -0
- data/spec/dummy/app/assets/stylesheets/skip_xhr_request.css +4 -0
- data/spec/dummy/app/controllers/skip_xhr_request_controller.rb +7 -0
- data/spec/dummy/app/helpers/skip_xhr_request_helper.rb +2 -0
- data/spec/dummy/app/views/skip_xhr_request/index.html.erb +9 -0
- data/spec/dummy/app/views/skip_xhr_request/index.js.erb +1 -0
- data/spec/dummy/app/views/skip_xhr_request/index.mobile.erb +9 -0
- data/spec/dummy/config/routes.rb +2 -0
- data/spec/dummy/log/test.log +764 -0
- metadata +24 -8
@@ -91,12 +91,20 @@ module Mobylette
|
|
91
91
|
module InstanceMethods
|
92
92
|
private
|
93
93
|
|
94
|
+
# Returns true if this request should be treated as a mobile request
|
94
95
|
def respond_as_mobile?
|
95
|
-
|
96
|
+
processing_xhr_requests? and (force_mobile_by_session? or is_mobile_request?)
|
96
97
|
end
|
97
98
|
|
98
|
-
|
99
|
-
|
99
|
+
# Returns true if the visitor has de force_mobile session
|
100
|
+
def force_mobile_by_session?
|
101
|
+
session[:mobylette_override] == :force_mobile
|
102
|
+
end
|
103
|
+
|
104
|
+
# Returns true only if treating XHR requests (when skip_xhr_requests are set to false) or
|
105
|
+
# or when this is a non xhr request
|
106
|
+
def processing_xhr_requests?
|
107
|
+
not self.mobylette_skip_xhr_requests && request.xhr?
|
100
108
|
end
|
101
109
|
|
102
110
|
# :doc:
|
@@ -10,12 +10,13 @@ module Mobylette
|
|
10
10
|
cattr_accessor :user_agent
|
11
11
|
end
|
12
12
|
|
13
|
-
|
13
|
+
# Force the request to be a mobile request
|
14
14
|
def force_mobile_request_agent
|
15
15
|
insert_faker
|
16
16
|
ActionController::Base.is_mobile_request = true
|
17
17
|
end
|
18
18
|
|
19
|
+
# Reset the request mobile agent of the request
|
19
20
|
def reset_test_request_agent
|
20
21
|
insert_faker
|
21
22
|
ActionController::Base.is_mobile_request = false
|
@@ -23,6 +24,7 @@ module Mobylette
|
|
23
24
|
|
24
25
|
private
|
25
26
|
|
27
|
+
# includes the faker module for faking mobile requests
|
26
28
|
def insert_faker
|
27
29
|
return if ActionController::Base.included_modules.include?(Mobylette::Helmet::Faker)
|
28
30
|
ActionController::Base.send(:include, Mobylette::Helmet::Faker)
|
data/lib/mobylette/railtie.rb
CHANGED
@@ -1,4 +1,8 @@
|
|
1
1
|
module Mobylette
|
2
|
+
# Gem's Configuration as Railtie
|
3
|
+
#
|
4
|
+
# Automatic inlcudes Mobylette::Controllers::RespondToMobileRequests to ActiveController::Base and
|
5
|
+
# load Mobylette::Controllers::Helpers as ActionController::Base helpers
|
2
6
|
class Railtie < ::Rails::Railtie
|
3
7
|
initializer :mobylette do
|
4
8
|
ActiveSupport.on_load(:action_controller) do
|
data/lib/mobylette/version.rb
CHANGED
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe SkipXhrRequestController do
|
4
|
+
render_views
|
5
|
+
|
6
|
+
#######################################################
|
7
|
+
# Testing XHR requests
|
8
|
+
describe "XHR Requests" do
|
9
|
+
it "should not use mobile format for xhr requests" do
|
10
|
+
force_mobile_request_agent("Android")
|
11
|
+
xhr :get, :index
|
12
|
+
response.should render_template(:index)
|
13
|
+
response.body.should contain("this is the mobile view")
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
AJAX VIEW
|
data/spec/dummy/config/routes.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
@@ -801,3 +801,767 @@ Completed 500 Internal Server Error in 2ms
|
|
801
801
|
Completed 500 Internal Server Error in 1ms
|
802
802
|
Processing by NoFallbackController#test as HTML
|
803
803
|
Completed 500 Internal Server Error in 1ms
|
804
|
+
Processing by DefaultFallbackController#index as HTML
|
805
|
+
Completed 200 OK in 124ms (Views: 123.3ms)
|
806
|
+
Processing by DefaultFallbackController#index as HTML
|
807
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
808
|
+
Processing by DefaultFallbackController#test as HTML
|
809
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
810
|
+
Processing by DefaultFallbackController#test as JS
|
811
|
+
Completed 200 OK in 41ms (Views: 41.1ms)
|
812
|
+
Processing by ForceFallbackController#index as HTML
|
813
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
814
|
+
Processing by ForceFallbackController#index as HTML
|
815
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
816
|
+
Processing by ForceFallbackController#test as HTML
|
817
|
+
Completed 200 OK in 3ms (Views: 2.1ms)
|
818
|
+
Processing by ForceFallbackController#test as HTML
|
819
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
820
|
+
Processing by ForceFallbackController#test as JS
|
821
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
822
|
+
Processing by HomeController#index as HTML
|
823
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
824
|
+
Processing by HomeController#index as HTML
|
825
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
826
|
+
Processing by HomeController#index as HTML
|
827
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
828
|
+
Processing by HomeController#index as HTML
|
829
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
830
|
+
Processing by HomeController#index as HTML
|
831
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
832
|
+
Processing by HomeController#index as HTML
|
833
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
834
|
+
Processing by HomeController#index as HTML
|
835
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
836
|
+
Processing by HomeController#index as HTML
|
837
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
838
|
+
Processing by HomeController#index as HTML
|
839
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
840
|
+
Processing by HomeController#respond_to_test as HTML
|
841
|
+
Completed 200 OK in 3ms (Views: 2.1ms)
|
842
|
+
Processing by HomeController#respond_to_test as HTML
|
843
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
844
|
+
Processing by HomeController#respond_to_test as MOBILE
|
845
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
846
|
+
Processing by HomeController#index as JS
|
847
|
+
Completed 200 OK in 6ms (Views: 6.3ms)
|
848
|
+
Processing by HomeController#index as HTML
|
849
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
850
|
+
Processing by HomeController#index as HTML
|
851
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
852
|
+
Processing by NoFallbackController#index as HTML
|
853
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
854
|
+
Processing by NoFallbackController#index as HTML
|
855
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
856
|
+
Processing by NoFallbackController#test as HTML
|
857
|
+
Completed 500 Internal Server Error in 2ms
|
858
|
+
Processing by NoFallbackController#test as HTML
|
859
|
+
Completed 500 Internal Server Error in 1ms
|
860
|
+
Processing by NoFallbackController#test as HTML
|
861
|
+
Completed 500 Internal Server Error in 1ms
|
862
|
+
Processing by DefaultFallbackController#index as HTML
|
863
|
+
Completed 200 OK in 116ms (Views: 115.9ms)
|
864
|
+
Processing by DefaultFallbackController#index as HTML
|
865
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
866
|
+
Processing by DefaultFallbackController#test as HTML
|
867
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
868
|
+
Processing by DefaultFallbackController#test as JS
|
869
|
+
Completed 200 OK in 41ms (Views: 40.9ms)
|
870
|
+
Processing by ForceFallbackController#index as HTML
|
871
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
872
|
+
Processing by ForceFallbackController#index as HTML
|
873
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
874
|
+
Processing by ForceFallbackController#test as HTML
|
875
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
876
|
+
Processing by ForceFallbackController#test as HTML
|
877
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
878
|
+
Processing by ForceFallbackController#test as JS
|
879
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
880
|
+
Processing by HomeController#index as HTML
|
881
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
882
|
+
Processing by HomeController#index as HTML
|
883
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
884
|
+
Processing by HomeController#index as HTML
|
885
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
886
|
+
Processing by HomeController#index as HTML
|
887
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
888
|
+
Processing by HomeController#index as HTML
|
889
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
890
|
+
Processing by HomeController#index as HTML
|
891
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
892
|
+
Processing by HomeController#index as HTML
|
893
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
894
|
+
Processing by HomeController#index as HTML
|
895
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
896
|
+
Processing by HomeController#index as HTML
|
897
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
898
|
+
Processing by HomeController#respond_to_test as HTML
|
899
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
900
|
+
Processing by HomeController#respond_to_test as HTML
|
901
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
902
|
+
Processing by HomeController#respond_to_test as MOBILE
|
903
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
904
|
+
Processing by HomeController#index as JS
|
905
|
+
Completed 200 OK in 6ms (Views: 6.3ms)
|
906
|
+
Processing by HomeController#index as HTML
|
907
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
908
|
+
Processing by HomeController#index as HTML
|
909
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
910
|
+
Processing by NoFallbackController#index as HTML
|
911
|
+
Completed 200 OK in 6ms (Views: 5.5ms)
|
912
|
+
Processing by NoFallbackController#index as HTML
|
913
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
914
|
+
Processing by NoFallbackController#test as HTML
|
915
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
916
|
+
Processing by NoFallbackController#test as HTML
|
917
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
918
|
+
Processing by NoFallbackController#test as HTML
|
919
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
920
|
+
Processing by DefaultFallbackController#index as HTML
|
921
|
+
Completed 200 OK in 116ms (Views: 115.3ms)
|
922
|
+
Processing by DefaultFallbackController#index as HTML
|
923
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
924
|
+
Processing by DefaultFallbackController#test as HTML
|
925
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
926
|
+
Processing by DefaultFallbackController#test as JS
|
927
|
+
Completed 200 OK in 44ms (Views: 43.6ms)
|
928
|
+
Processing by ForceFallbackController#index as HTML
|
929
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
930
|
+
Processing by ForceFallbackController#index as HTML
|
931
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
932
|
+
Processing by ForceFallbackController#test as HTML
|
933
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
934
|
+
Processing by ForceFallbackController#test as HTML
|
935
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
936
|
+
Processing by ForceFallbackController#test as JS
|
937
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
938
|
+
Processing by HomeController#index as HTML
|
939
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
940
|
+
Processing by HomeController#index as HTML
|
941
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
942
|
+
Processing by HomeController#index as HTML
|
943
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
944
|
+
Processing by HomeController#index as HTML
|
945
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
946
|
+
Processing by HomeController#index as HTML
|
947
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
948
|
+
Processing by HomeController#index as HTML
|
949
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
950
|
+
Processing by HomeController#index as HTML
|
951
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
952
|
+
Processing by HomeController#index as HTML
|
953
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
954
|
+
Processing by HomeController#index as HTML
|
955
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
956
|
+
Processing by HomeController#respond_to_test as HTML
|
957
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
958
|
+
Processing by HomeController#respond_to_test as HTML
|
959
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
960
|
+
Processing by HomeController#respond_to_test as MOBILE
|
961
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
962
|
+
Processing by HomeController#index as JS
|
963
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
964
|
+
Processing by HomeController#index as HTML
|
965
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
966
|
+
Processing by HomeController#index as HTML
|
967
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
968
|
+
Processing by NoFallbackController#index as HTML
|
969
|
+
Completed 200 OK in 6ms (Views: 5.1ms)
|
970
|
+
Processing by NoFallbackController#index as HTML
|
971
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
972
|
+
Processing by NoFallbackController#test as HTML
|
973
|
+
Completed 500 Internal Server Error in 2ms
|
974
|
+
Processing by NoFallbackController#test as HTML
|
975
|
+
Completed 500 Internal Server Error in 1ms
|
976
|
+
Processing by NoFallbackController#test as HTML
|
977
|
+
Completed 500 Internal Server Error in 1ms
|
978
|
+
Processing by DefaultFallbackController#index as HTML
|
979
|
+
Completed 200 OK in 121ms (Views: 120.1ms)
|
980
|
+
Processing by DefaultFallbackController#index as HTML
|
981
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
982
|
+
Processing by DefaultFallbackController#test as HTML
|
983
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
984
|
+
Processing by DefaultFallbackController#test as JS
|
985
|
+
Completed 200 OK in 42ms (Views: 42.0ms)
|
986
|
+
Processing by ForceFallbackController#index as HTML
|
987
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
988
|
+
Processing by ForceFallbackController#index as HTML
|
989
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
990
|
+
Processing by ForceFallbackController#test as HTML
|
991
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
992
|
+
Processing by ForceFallbackController#test as HTML
|
993
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
994
|
+
Processing by ForceFallbackController#test as JS
|
995
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
996
|
+
Processing by HomeController#index as HTML
|
997
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
998
|
+
Processing by HomeController#index as HTML
|
999
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1000
|
+
Processing by HomeController#index as HTML
|
1001
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
1002
|
+
Processing by HomeController#index as HTML
|
1003
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1004
|
+
Processing by HomeController#index as HTML
|
1005
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1006
|
+
Processing by HomeController#index as HTML
|
1007
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1008
|
+
Processing by HomeController#index as HTML
|
1009
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1010
|
+
Processing by HomeController#index as HTML
|
1011
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1012
|
+
Processing by HomeController#index as HTML
|
1013
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
1014
|
+
Processing by HomeController#respond_to_test as HTML
|
1015
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
1016
|
+
Processing by HomeController#respond_to_test as HTML
|
1017
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1018
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1019
|
+
Completed 200 OK in 41ms (Views: 40.5ms)
|
1020
|
+
Processing by HomeController#index as JS
|
1021
|
+
Completed 200 OK in 6ms (Views: 6.2ms)
|
1022
|
+
Processing by HomeController#index as HTML
|
1023
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
1024
|
+
Processing by HomeController#index as HTML
|
1025
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1026
|
+
Processing by NoFallbackController#index as HTML
|
1027
|
+
Completed 200 OK in 5ms (Views: 5.0ms)
|
1028
|
+
Processing by NoFallbackController#index as HTML
|
1029
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
1030
|
+
Processing by NoFallbackController#test as HTML
|
1031
|
+
Completed 500 Internal Server Error in 2ms
|
1032
|
+
Processing by NoFallbackController#test as HTML
|
1033
|
+
Completed 500 Internal Server Error in 1ms
|
1034
|
+
Processing by NoFallbackController#test as HTML
|
1035
|
+
Completed 500 Internal Server Error in 1ms
|
1036
|
+
Processing by DefaultFallbackController#index as HTML
|
1037
|
+
Completed 200 OK in 122ms (Views: 121.0ms)
|
1038
|
+
Processing by DefaultFallbackController#index as HTML
|
1039
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1040
|
+
Processing by DefaultFallbackController#test as HTML
|
1041
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1042
|
+
Processing by DefaultFallbackController#test as JS
|
1043
|
+
Completed 200 OK in 40ms (Views: 40.2ms)
|
1044
|
+
Processing by ForceFallbackController#index as HTML
|
1045
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
1046
|
+
Processing by ForceFallbackController#index as HTML
|
1047
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
1048
|
+
Processing by ForceFallbackController#test as HTML
|
1049
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1050
|
+
Processing by ForceFallbackController#test as HTML
|
1051
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1052
|
+
Processing by ForceFallbackController#test as JS
|
1053
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1054
|
+
Processing by HomeController#index as HTML
|
1055
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
1056
|
+
Processing by HomeController#index as HTML
|
1057
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1058
|
+
Processing by HomeController#index as HTML
|
1059
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
1060
|
+
Processing by HomeController#index as HTML
|
1061
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1062
|
+
Processing by HomeController#index as HTML
|
1063
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1064
|
+
Processing by HomeController#index as HTML
|
1065
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1066
|
+
Processing by HomeController#index as HTML
|
1067
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1068
|
+
Processing by HomeController#index as HTML
|
1069
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1070
|
+
Processing by HomeController#index as HTML
|
1071
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
1072
|
+
Processing by HomeController#respond_to_test as HTML
|
1073
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
1074
|
+
Processing by HomeController#respond_to_test as HTML
|
1075
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
1076
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1077
|
+
Completed 200 OK in 48ms (Views: 47.8ms)
|
1078
|
+
Processing by HomeController#index as JS
|
1079
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
1080
|
+
Processing by HomeController#index as HTML
|
1081
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1082
|
+
Processing by HomeController#index as HTML
|
1083
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
1084
|
+
Processing by NoFallbackController#index as HTML
|
1085
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
1086
|
+
Processing by NoFallbackController#index as HTML
|
1087
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1088
|
+
Processing by NoFallbackController#test as HTML
|
1089
|
+
Completed 500 Internal Server Error in 2ms
|
1090
|
+
Processing by NoFallbackController#test as HTML
|
1091
|
+
Completed 500 Internal Server Error in 1ms
|
1092
|
+
Processing by NoFallbackController#test as HTML
|
1093
|
+
Completed 500 Internal Server Error in 1ms
|
1094
|
+
Processing by DefaultFallbackController#index as HTML
|
1095
|
+
Completed 200 OK in 119ms (Views: 118.2ms)
|
1096
|
+
Processing by DefaultFallbackController#index as HTML
|
1097
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1098
|
+
Processing by DefaultFallbackController#test as HTML
|
1099
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1100
|
+
Processing by DefaultFallbackController#test as JS
|
1101
|
+
Completed 200 OK in 41ms (Views: 41.2ms)
|
1102
|
+
Processing by ForceFallbackController#index as HTML
|
1103
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
1104
|
+
Processing by ForceFallbackController#index as HTML
|
1105
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1106
|
+
Processing by ForceFallbackController#test as HTML
|
1107
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1108
|
+
Processing by ForceFallbackController#test as HTML
|
1109
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1110
|
+
Processing by ForceFallbackController#test as JS
|
1111
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1112
|
+
Processing by HomeController#index as HTML
|
1113
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
1114
|
+
Processing by HomeController#index as HTML
|
1115
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1116
|
+
Processing by HomeController#index as HTML
|
1117
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1118
|
+
Processing by HomeController#index as HTML
|
1119
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1120
|
+
Processing by HomeController#index as HTML
|
1121
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1122
|
+
Processing by HomeController#index as HTML
|
1123
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1124
|
+
Processing by HomeController#index as HTML
|
1125
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1126
|
+
Processing by HomeController#index as HTML
|
1127
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1128
|
+
Processing by HomeController#index as HTML
|
1129
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1130
|
+
Processing by HomeController#respond_to_test as HTML
|
1131
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
1132
|
+
Processing by HomeController#respond_to_test as HTML
|
1133
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1134
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1135
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
1136
|
+
Processing by HomeController#index as JS
|
1137
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
1138
|
+
Processing by HomeController#index as HTML
|
1139
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1140
|
+
Processing by HomeController#index as HTML
|
1141
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
1142
|
+
Processing by NoFallbackController#index as HTML
|
1143
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
1144
|
+
Processing by NoFallbackController#index as HTML
|
1145
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1146
|
+
Processing by NoFallbackController#test as HTML
|
1147
|
+
Completed 500 Internal Server Error in 2ms
|
1148
|
+
Processing by NoFallbackController#test as HTML
|
1149
|
+
Completed 500 Internal Server Error in 1ms
|
1150
|
+
Processing by NoFallbackController#test as HTML
|
1151
|
+
Completed 500 Internal Server Error in 1ms
|
1152
|
+
Processing by DefaultFallbackController#index as HTML
|
1153
|
+
Completed 200 OK in 121ms (Views: 120.9ms)
|
1154
|
+
Processing by DefaultFallbackController#index as HTML
|
1155
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1156
|
+
Processing by DefaultFallbackController#test as HTML
|
1157
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
1158
|
+
Processing by DefaultFallbackController#test as JS
|
1159
|
+
Completed 200 OK in 42ms (Views: 41.4ms)
|
1160
|
+
Processing by ForceFallbackController#index as HTML
|
1161
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
1162
|
+
Processing by ForceFallbackController#index as HTML
|
1163
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1164
|
+
Processing by ForceFallbackController#test as HTML
|
1165
|
+
Completed 200 OK in 40ms (Views: 2.0ms)
|
1166
|
+
Processing by ForceFallbackController#test as HTML
|
1167
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1168
|
+
Processing by ForceFallbackController#test as JS
|
1169
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1170
|
+
Processing by HomeController#index as HTML
|
1171
|
+
Completed 200 OK in 6ms (Views: 5.4ms)
|
1172
|
+
Processing by HomeController#index as HTML
|
1173
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1174
|
+
Processing by HomeController#index as HTML
|
1175
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
1176
|
+
Processing by HomeController#index as HTML
|
1177
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1178
|
+
Processing by HomeController#index as HTML
|
1179
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1180
|
+
Processing by HomeController#index as HTML
|
1181
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1182
|
+
Processing by HomeController#index as HTML
|
1183
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1184
|
+
Processing by HomeController#index as HTML
|
1185
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1186
|
+
Processing by HomeController#index as HTML
|
1187
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
1188
|
+
Processing by HomeController#respond_to_test as HTML
|
1189
|
+
Completed 200 OK in 4ms (Views: 3.0ms)
|
1190
|
+
Processing by HomeController#respond_to_test as HTML
|
1191
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1192
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1193
|
+
Completed 200 OK in 2ms (Views: 1.2ms)
|
1194
|
+
Processing by HomeController#index as JS
|
1195
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
1196
|
+
Processing by HomeController#index as HTML
|
1197
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1198
|
+
Processing by HomeController#index as HTML
|
1199
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1200
|
+
Processing by NoFallbackController#index as HTML
|
1201
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
1202
|
+
Processing by NoFallbackController#index as HTML
|
1203
|
+
Completed 200 OK in 2ms (Views: 2.3ms)
|
1204
|
+
Processing by NoFallbackController#test as HTML
|
1205
|
+
Completed 500 Internal Server Error in 2ms
|
1206
|
+
Processing by NoFallbackController#test as HTML
|
1207
|
+
Completed 500 Internal Server Error in 1ms
|
1208
|
+
Processing by NoFallbackController#test as HTML
|
1209
|
+
Completed 500 Internal Server Error in 1ms
|
1210
|
+
Processing by DefaultFallbackController#index as HTML
|
1211
|
+
Completed 200 OK in 124ms (Views: 123.0ms)
|
1212
|
+
Processing by DefaultFallbackController#index as HTML
|
1213
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1214
|
+
Processing by DefaultFallbackController#test as HTML
|
1215
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1216
|
+
Processing by DefaultFallbackController#test as JS
|
1217
|
+
Completed 200 OK in 41ms (Views: 41.0ms)
|
1218
|
+
Processing by ForceFallbackController#index as HTML
|
1219
|
+
Completed 200 OK in 8ms (Views: 7.4ms)
|
1220
|
+
Processing by ForceFallbackController#index as HTML
|
1221
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1222
|
+
Processing by ForceFallbackController#test as HTML
|
1223
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1224
|
+
Processing by ForceFallbackController#test as HTML
|
1225
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1226
|
+
Processing by ForceFallbackController#test as JS
|
1227
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1228
|
+
Processing by HomeController#index as HTML
|
1229
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
1230
|
+
Processing by HomeController#index as HTML
|
1231
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1232
|
+
Processing by HomeController#index as HTML
|
1233
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
1234
|
+
Processing by HomeController#index as HTML
|
1235
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1236
|
+
Processing by HomeController#index as HTML
|
1237
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
1238
|
+
Processing by HomeController#index as HTML
|
1239
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1240
|
+
Processing by HomeController#index as HTML
|
1241
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1242
|
+
Processing by HomeController#index as HTML
|
1243
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1244
|
+
Processing by HomeController#index as HTML
|
1245
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1246
|
+
Processing by HomeController#respond_to_test as HTML
|
1247
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
1248
|
+
Processing by HomeController#respond_to_test as HTML
|
1249
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
1250
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1251
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
1252
|
+
Processing by HomeController#index as JS
|
1253
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
1254
|
+
Processing by HomeController#index as HTML
|
1255
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1256
|
+
Processing by HomeController#index as HTML
|
1257
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
1258
|
+
Processing by NoFallbackController#index as HTML
|
1259
|
+
Completed 200 OK in 6ms (Views: 5.1ms)
|
1260
|
+
Processing by NoFallbackController#index as HTML
|
1261
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
1262
|
+
Processing by NoFallbackController#test as HTML
|
1263
|
+
Completed 500 Internal Server Error in 2ms
|
1264
|
+
Processing by NoFallbackController#test as HTML
|
1265
|
+
Completed 500 Internal Server Error in 1ms
|
1266
|
+
Processing by NoFallbackController#test as HTML
|
1267
|
+
Completed 500 Internal Server Error in 1ms
|
1268
|
+
Processing by DefaultFallbackController#index as HTML
|
1269
|
+
Completed 200 OK in 118ms (Views: 117.3ms)
|
1270
|
+
Processing by DefaultFallbackController#index as HTML
|
1271
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1272
|
+
Processing by DefaultFallbackController#test as HTML
|
1273
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
1274
|
+
Processing by DefaultFallbackController#test as JS
|
1275
|
+
Completed 200 OK in 40ms (Views: 39.9ms)
|
1276
|
+
Processing by ForceFallbackController#index as HTML
|
1277
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
1278
|
+
Processing by ForceFallbackController#index as HTML
|
1279
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
1280
|
+
Processing by ForceFallbackController#test as HTML
|
1281
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1282
|
+
Processing by ForceFallbackController#test as HTML
|
1283
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1284
|
+
Processing by ForceFallbackController#test as JS
|
1285
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1286
|
+
Processing by HomeController#index as HTML
|
1287
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
1288
|
+
Processing by HomeController#index as HTML
|
1289
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1290
|
+
Processing by HomeController#index as HTML
|
1291
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
1292
|
+
Processing by HomeController#index as HTML
|
1293
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1294
|
+
Processing by HomeController#index as HTML
|
1295
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1296
|
+
Processing by HomeController#index as HTML
|
1297
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1298
|
+
Processing by HomeController#index as HTML
|
1299
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1300
|
+
Processing by HomeController#index as HTML
|
1301
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1302
|
+
Processing by HomeController#index as HTML
|
1303
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1304
|
+
Processing by HomeController#respond_to_test as HTML
|
1305
|
+
Completed 200 OK in 3ms (Views: 2.1ms)
|
1306
|
+
Processing by HomeController#respond_to_test as HTML
|
1307
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1308
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1309
|
+
Completed 200 OK in 2ms (Views: 1.2ms)
|
1310
|
+
Processing by HomeController#index as JS
|
1311
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
1312
|
+
Processing by HomeController#index as HTML
|
1313
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
1314
|
+
Processing by HomeController#index as HTML
|
1315
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
1316
|
+
Processing by NoFallbackController#index as HTML
|
1317
|
+
Completed 200 OK in 5ms (Views: 5.0ms)
|
1318
|
+
Processing by NoFallbackController#index as HTML
|
1319
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
1320
|
+
Processing by NoFallbackController#test as HTML
|
1321
|
+
Completed 500 Internal Server Error in 2ms
|
1322
|
+
Processing by NoFallbackController#test as HTML
|
1323
|
+
Completed 500 Internal Server Error in 1ms
|
1324
|
+
Processing by NoFallbackController#test as HTML
|
1325
|
+
Completed 500 Internal Server Error in 1ms
|
1326
|
+
Processing by SkipXhrRequestController#index as JS
|
1327
|
+
Completed 200 OK in 6ms (Views: 5.8ms)
|
1328
|
+
Processing by DefaultFallbackController#index as HTML
|
1329
|
+
Completed 200 OK in 84ms (Views: 82.9ms)
|
1330
|
+
Processing by DefaultFallbackController#index as HTML
|
1331
|
+
Completed 200 OK in 4ms (Views: 3.6ms)
|
1332
|
+
Processing by DefaultFallbackController#test as HTML
|
1333
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
1334
|
+
Processing by DefaultFallbackController#test as JS
|
1335
|
+
Completed 200 OK in 43ms (Views: 42.7ms)
|
1336
|
+
Processing by ForceFallbackController#index as HTML
|
1337
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
1338
|
+
Processing by ForceFallbackController#index as HTML
|
1339
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
1340
|
+
Processing by ForceFallbackController#test as HTML
|
1341
|
+
Completed 200 OK in 3ms (Views: 2.0ms)
|
1342
|
+
Processing by ForceFallbackController#test as HTML
|
1343
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1344
|
+
Processing by ForceFallbackController#test as JS
|
1345
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1346
|
+
Processing by HomeController#index as HTML
|
1347
|
+
Completed 200 OK in 7ms (Views: 6.2ms)
|
1348
|
+
Processing by HomeController#index as HTML
|
1349
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1350
|
+
Processing by HomeController#index as HTML
|
1351
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
1352
|
+
Processing by HomeController#index as HTML
|
1353
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1354
|
+
Processing by HomeController#index as HTML
|
1355
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1356
|
+
Processing by HomeController#index as HTML
|
1357
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
1358
|
+
Processing by HomeController#index as HTML
|
1359
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1360
|
+
Processing by HomeController#index as HTML
|
1361
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1362
|
+
Processing by HomeController#index as HTML
|
1363
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1364
|
+
Processing by HomeController#respond_to_test as HTML
|
1365
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
1366
|
+
Processing by HomeController#respond_to_test as HTML
|
1367
|
+
Completed 200 OK in 4ms (Views: 3.0ms)
|
1368
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1369
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1370
|
+
Processing by HomeController#index as JS
|
1371
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
1372
|
+
Processing by HomeController#index as HTML
|
1373
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1374
|
+
Processing by HomeController#index as HTML
|
1375
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1376
|
+
Processing by NoFallbackController#index as HTML
|
1377
|
+
Completed 200 OK in 55ms (Views: 54.6ms)
|
1378
|
+
Processing by NoFallbackController#index as HTML
|
1379
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
1380
|
+
Processing by NoFallbackController#test as HTML
|
1381
|
+
Completed 500 Internal Server Error in 2ms
|
1382
|
+
Processing by NoFallbackController#test as HTML
|
1383
|
+
Completed 500 Internal Server Error in 1ms
|
1384
|
+
Processing by NoFallbackController#test as HTML
|
1385
|
+
Completed 500 Internal Server Error in 1ms
|
1386
|
+
Processing by SkipXhrRequestController#index as JS
|
1387
|
+
Completed 200 OK in 7ms (Views: 6.4ms)
|
1388
|
+
Processing by DefaultFallbackController#index as HTML
|
1389
|
+
Completed 200 OK in 87ms (Views: 85.8ms)
|
1390
|
+
Processing by DefaultFallbackController#index as HTML
|
1391
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
1392
|
+
Processing by DefaultFallbackController#test as HTML
|
1393
|
+
Completed 200 OK in 4ms (Views: 3.2ms)
|
1394
|
+
Processing by DefaultFallbackController#test as JS
|
1395
|
+
Completed 200 OK in 42ms (Views: 42.1ms)
|
1396
|
+
Processing by ForceFallbackController#index as HTML
|
1397
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
1398
|
+
Processing by ForceFallbackController#index as HTML
|
1399
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1400
|
+
Processing by ForceFallbackController#test as HTML
|
1401
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
1402
|
+
Processing by ForceFallbackController#test as HTML
|
1403
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1404
|
+
Processing by ForceFallbackController#test as JS
|
1405
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1406
|
+
Processing by HomeController#index as HTML
|
1407
|
+
Completed 200 OK in 7ms (Views: 6.3ms)
|
1408
|
+
Processing by HomeController#index as HTML
|
1409
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
1410
|
+
Processing by HomeController#index as HTML
|
1411
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
1412
|
+
Processing by HomeController#index as HTML
|
1413
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1414
|
+
Processing by HomeController#index as HTML
|
1415
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1416
|
+
Processing by HomeController#index as HTML
|
1417
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1418
|
+
Processing by HomeController#index as HTML
|
1419
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1420
|
+
Processing by HomeController#index as HTML
|
1421
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1422
|
+
Processing by HomeController#index as HTML
|
1423
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1424
|
+
Processing by HomeController#respond_to_test as HTML
|
1425
|
+
Completed 200 OK in 4ms (Views: 3.2ms)
|
1426
|
+
Processing by HomeController#respond_to_test as HTML
|
1427
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1428
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1429
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1430
|
+
Processing by HomeController#index as JS
|
1431
|
+
Completed 200 OK in 7ms (Views: 6.7ms)
|
1432
|
+
Processing by HomeController#index as HTML
|
1433
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1434
|
+
Processing by HomeController#index as HTML
|
1435
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1436
|
+
Processing by NoFallbackController#index as HTML
|
1437
|
+
Completed 200 OK in 55ms (Views: 54.3ms)
|
1438
|
+
Processing by NoFallbackController#index as HTML
|
1439
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
1440
|
+
Processing by NoFallbackController#test as HTML
|
1441
|
+
Completed 500 Internal Server Error in 2ms
|
1442
|
+
Processing by NoFallbackController#test as HTML
|
1443
|
+
Completed 500 Internal Server Error in 1ms
|
1444
|
+
Processing by NoFallbackController#test as HTML
|
1445
|
+
Completed 500 Internal Server Error in 1ms
|
1446
|
+
Processing by SkipXhrRequestController#index as JS
|
1447
|
+
Completed 200 OK in 8ms (Views: 7.2ms)
|
1448
|
+
Processing by DefaultFallbackController#index as HTML
|
1449
|
+
Completed 200 OK in 116ms (Views: 115.5ms)
|
1450
|
+
Processing by DefaultFallbackController#index as HTML
|
1451
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1452
|
+
Processing by DefaultFallbackController#test as HTML
|
1453
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
1454
|
+
Processing by DefaultFallbackController#test as JS
|
1455
|
+
Completed 200 OK in 41ms (Views: 40.8ms)
|
1456
|
+
Processing by ForceFallbackController#index as HTML
|
1457
|
+
Completed 200 OK in 6ms (Views: 5.5ms)
|
1458
|
+
Processing by ForceFallbackController#index as HTML
|
1459
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1460
|
+
Processing by ForceFallbackController#test as HTML
|
1461
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1462
|
+
Processing by ForceFallbackController#test as HTML
|
1463
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1464
|
+
Processing by ForceFallbackController#test as JS
|
1465
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
1466
|
+
Processing by HomeController#index as HTML
|
1467
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
1468
|
+
Processing by HomeController#index as HTML
|
1469
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1470
|
+
Processing by HomeController#index as HTML
|
1471
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
1472
|
+
Processing by HomeController#index as HTML
|
1473
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1474
|
+
Processing by HomeController#index as HTML
|
1475
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
1476
|
+
Processing by HomeController#index as HTML
|
1477
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1478
|
+
Processing by HomeController#index as HTML
|
1479
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1480
|
+
Processing by HomeController#index as HTML
|
1481
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1482
|
+
Processing by HomeController#index as HTML
|
1483
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
1484
|
+
Processing by HomeController#respond_to_test as HTML
|
1485
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
1486
|
+
Processing by HomeController#respond_to_test as HTML
|
1487
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
1488
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1489
|
+
Completed 200 OK in 2ms (Views: 1.2ms)
|
1490
|
+
Processing by HomeController#index as JS
|
1491
|
+
Completed 200 OK in 6ms (Views: 6.3ms)
|
1492
|
+
Processing by HomeController#index as HTML
|
1493
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1494
|
+
Processing by HomeController#index as HTML
|
1495
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
1496
|
+
Processing by NoFallbackController#index as HTML
|
1497
|
+
Completed 200 OK in 6ms (Views: 5.1ms)
|
1498
|
+
Processing by NoFallbackController#index as HTML
|
1499
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
1500
|
+
Processing by NoFallbackController#test as HTML
|
1501
|
+
Completed 500 Internal Server Error in 2ms
|
1502
|
+
Processing by NoFallbackController#test as HTML
|
1503
|
+
Completed 500 Internal Server Error in 1ms
|
1504
|
+
Processing by NoFallbackController#test as HTML
|
1505
|
+
Completed 500 Internal Server Error in 1ms
|
1506
|
+
Processing by SkipXhrRequestController#index as JS
|
1507
|
+
Completed 200 OK in 7ms (Views: 6.1ms)
|
1508
|
+
Processing by DefaultFallbackController#index as HTML
|
1509
|
+
Completed 200 OK in 85ms (Views: 83.9ms)
|
1510
|
+
Processing by DefaultFallbackController#index as HTML
|
1511
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
1512
|
+
Processing by DefaultFallbackController#test as HTML
|
1513
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
1514
|
+
Processing by DefaultFallbackController#test as JS
|
1515
|
+
Completed 200 OK in 43ms (Views: 42.4ms)
|
1516
|
+
Processing by ForceFallbackController#index as HTML
|
1517
|
+
Completed 200 OK in 7ms (Views: 6.0ms)
|
1518
|
+
Processing by ForceFallbackController#index as HTML
|
1519
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
1520
|
+
Processing by ForceFallbackController#test as HTML
|
1521
|
+
Completed 200 OK in 3ms (Views: 2.1ms)
|
1522
|
+
Processing by ForceFallbackController#test as HTML
|
1523
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1524
|
+
Processing by ForceFallbackController#test as JS
|
1525
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1526
|
+
Processing by HomeController#index as HTML
|
1527
|
+
Completed 200 OK in 6ms (Views: 5.9ms)
|
1528
|
+
Processing by HomeController#index as HTML
|
1529
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1530
|
+
Processing by HomeController#index as HTML
|
1531
|
+
Completed 200 OK in 4ms (Views: 3.5ms)
|
1532
|
+
Processing by HomeController#index as HTML
|
1533
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1534
|
+
Processing by HomeController#index as HTML
|
1535
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1536
|
+
Processing by HomeController#index as HTML
|
1537
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1538
|
+
Processing by HomeController#index as HTML
|
1539
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1540
|
+
Processing by HomeController#index as HTML
|
1541
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1542
|
+
Processing by HomeController#index as HTML
|
1543
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1544
|
+
Processing by HomeController#respond_to_test as HTML
|
1545
|
+
Completed 200 OK in 4ms (Views: 3.2ms)
|
1546
|
+
Processing by HomeController#respond_to_test as HTML
|
1547
|
+
Completed 200 OK in 4ms (Views: 3.9ms)
|
1548
|
+
Processing by HomeController#respond_to_test as MOBILE
|
1549
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1550
|
+
Processing by HomeController#index as JS
|
1551
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
1552
|
+
Processing by HomeController#index as HTML
|
1553
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1554
|
+
Processing by HomeController#index as HTML
|
1555
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1556
|
+
Processing by NoFallbackController#index as HTML
|
1557
|
+
Completed 200 OK in 54ms (Views: 53.3ms)
|
1558
|
+
Processing by NoFallbackController#index as HTML
|
1559
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
1560
|
+
Processing by NoFallbackController#test as HTML
|
1561
|
+
Completed 500 Internal Server Error in 2ms
|
1562
|
+
Processing by NoFallbackController#test as HTML
|
1563
|
+
Completed 500 Internal Server Error in 1ms
|
1564
|
+
Processing by NoFallbackController#test as HTML
|
1565
|
+
Completed 500 Internal Server Error in 1ms
|
1566
|
+
Processing by SkipXhrRequestController#index as JS
|
1567
|
+
Completed 200 OK in 8ms (Views: 7.7ms)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mobylette
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-09-
|
12
|
+
date: 2011-09-16 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &2151817000 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 3.1.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2151817000
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rspec
|
27
|
-
requirement: &
|
27
|
+
requirement: &2151815920 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2151815920
|
36
36
|
description: Adds the mobile format for rendering views for mobile device.
|
37
37
|
email:
|
38
38
|
- tscolari@gmail.com
|
@@ -58,6 +58,7 @@ files:
|
|
58
58
|
- spec/controllers/force_fallback_controller_spec.rb
|
59
59
|
- spec/controllers/home_controller_spec.rb
|
60
60
|
- spec/controllers/no_fallback_controller_spec.rb
|
61
|
+
- spec/controllers/skip_xhr_request_controller_spec.rb
|
61
62
|
- spec/dummy/app/assets/javascripts/application.js
|
62
63
|
- spec/dummy/app/assets/javascripts/application_mobile.js
|
63
64
|
- spec/dummy/app/assets/javascripts/default_fallback.js
|
@@ -66,6 +67,7 @@ files:
|
|
66
67
|
- spec/dummy/app/assets/javascripts/force_fallback.js
|
67
68
|
- spec/dummy/app/assets/javascripts/home.js
|
68
69
|
- spec/dummy/app/assets/javascripts/no_fallback.js
|
70
|
+
- spec/dummy/app/assets/javascripts/skip_xhr_request.js
|
69
71
|
- spec/dummy/app/assets/javascripts/testing.js
|
70
72
|
- spec/dummy/app/assets/stylesheets/application.css
|
71
73
|
- spec/dummy/app/assets/stylesheets/application_mobile.css
|
@@ -75,6 +77,7 @@ files:
|
|
75
77
|
- spec/dummy/app/assets/stylesheets/force_fallback.css
|
76
78
|
- spec/dummy/app/assets/stylesheets/home.css
|
77
79
|
- spec/dummy/app/assets/stylesheets/no_fallback.css
|
80
|
+
- spec/dummy/app/assets/stylesheets/skip_xhr_request.css
|
78
81
|
- spec/dummy/app/assets/stylesheets/testing.css
|
79
82
|
- spec/dummy/app/controllers/application_controller.rb
|
80
83
|
- spec/dummy/app/controllers/default_fallback_controller.rb
|
@@ -83,6 +86,7 @@ files:
|
|
83
86
|
- spec/dummy/app/controllers/force_fallback_controller.rb
|
84
87
|
- spec/dummy/app/controllers/home_controller.rb
|
85
88
|
- spec/dummy/app/controllers/no_fallback_controller.rb
|
89
|
+
- spec/dummy/app/controllers/skip_xhr_request_controller.rb
|
86
90
|
- spec/dummy/app/controllers/testing_controller.rb
|
87
91
|
- spec/dummy/app/helpers/application_helper.rb
|
88
92
|
- spec/dummy/app/helpers/default_fallback_helper.rb
|
@@ -91,6 +95,7 @@ files:
|
|
91
95
|
- spec/dummy/app/helpers/force_fallback_helper.rb
|
92
96
|
- spec/dummy/app/helpers/home_helper.rb
|
93
97
|
- spec/dummy/app/helpers/no_fallback_helper.rb
|
98
|
+
- spec/dummy/app/helpers/skip_xhr_request_helper.rb
|
94
99
|
- spec/dummy/app/helpers/testing_helper.rb
|
95
100
|
- spec/dummy/app/views/default_fallback/index.html.erb
|
96
101
|
- spec/dummy/app/views/default_fallback/index.js.erb
|
@@ -120,6 +125,9 @@ files:
|
|
120
125
|
- spec/dummy/app/views/no_fallback/index.mobile.erb
|
121
126
|
- spec/dummy/app/views/no_fallback/test.html.erb
|
122
127
|
- spec/dummy/app/views/no_fallback/test.js.erb
|
128
|
+
- spec/dummy/app/views/skip_xhr_request/index.html.erb
|
129
|
+
- spec/dummy/app/views/skip_xhr_request/index.js.erb
|
130
|
+
- spec/dummy/app/views/skip_xhr_request/index.mobile.erb
|
123
131
|
- spec/dummy/config/application.rb
|
124
132
|
- spec/dummy/config/boot.rb
|
125
133
|
- spec/dummy/config/database.yml
|
@@ -171,7 +179,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
171
179
|
version: '0'
|
172
180
|
segments:
|
173
181
|
- 0
|
174
|
-
hash:
|
182
|
+
hash: -2448216153814210720
|
175
183
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
176
184
|
none: false
|
177
185
|
requirements:
|
@@ -180,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
180
188
|
version: '0'
|
181
189
|
segments:
|
182
190
|
- 0
|
183
|
-
hash:
|
191
|
+
hash: -2448216153814210720
|
184
192
|
requirements: []
|
185
193
|
rubyforge_project:
|
186
194
|
rubygems_version: 1.8.6
|
@@ -194,6 +202,7 @@ test_files:
|
|
194
202
|
- spec/controllers/force_fallback_controller_spec.rb
|
195
203
|
- spec/controllers/home_controller_spec.rb
|
196
204
|
- spec/controllers/no_fallback_controller_spec.rb
|
205
|
+
- spec/controllers/skip_xhr_request_controller_spec.rb
|
197
206
|
- spec/dummy/app/assets/javascripts/application.js
|
198
207
|
- spec/dummy/app/assets/javascripts/application_mobile.js
|
199
208
|
- spec/dummy/app/assets/javascripts/default_fallback.js
|
@@ -202,6 +211,7 @@ test_files:
|
|
202
211
|
- spec/dummy/app/assets/javascripts/force_fallback.js
|
203
212
|
- spec/dummy/app/assets/javascripts/home.js
|
204
213
|
- spec/dummy/app/assets/javascripts/no_fallback.js
|
214
|
+
- spec/dummy/app/assets/javascripts/skip_xhr_request.js
|
205
215
|
- spec/dummy/app/assets/javascripts/testing.js
|
206
216
|
- spec/dummy/app/assets/stylesheets/application.css
|
207
217
|
- spec/dummy/app/assets/stylesheets/application_mobile.css
|
@@ -211,6 +221,7 @@ test_files:
|
|
211
221
|
- spec/dummy/app/assets/stylesheets/force_fallback.css
|
212
222
|
- spec/dummy/app/assets/stylesheets/home.css
|
213
223
|
- spec/dummy/app/assets/stylesheets/no_fallback.css
|
224
|
+
- spec/dummy/app/assets/stylesheets/skip_xhr_request.css
|
214
225
|
- spec/dummy/app/assets/stylesheets/testing.css
|
215
226
|
- spec/dummy/app/controllers/application_controller.rb
|
216
227
|
- spec/dummy/app/controllers/default_fallback_controller.rb
|
@@ -219,6 +230,7 @@ test_files:
|
|
219
230
|
- spec/dummy/app/controllers/force_fallback_controller.rb
|
220
231
|
- spec/dummy/app/controllers/home_controller.rb
|
221
232
|
- spec/dummy/app/controllers/no_fallback_controller.rb
|
233
|
+
- spec/dummy/app/controllers/skip_xhr_request_controller.rb
|
222
234
|
- spec/dummy/app/controllers/testing_controller.rb
|
223
235
|
- spec/dummy/app/helpers/application_helper.rb
|
224
236
|
- spec/dummy/app/helpers/default_fallback_helper.rb
|
@@ -227,6 +239,7 @@ test_files:
|
|
227
239
|
- spec/dummy/app/helpers/force_fallback_helper.rb
|
228
240
|
- spec/dummy/app/helpers/home_helper.rb
|
229
241
|
- spec/dummy/app/helpers/no_fallback_helper.rb
|
242
|
+
- spec/dummy/app/helpers/skip_xhr_request_helper.rb
|
230
243
|
- spec/dummy/app/helpers/testing_helper.rb
|
231
244
|
- spec/dummy/app/views/default_fallback/index.html.erb
|
232
245
|
- spec/dummy/app/views/default_fallback/index.js.erb
|
@@ -256,6 +269,9 @@ test_files:
|
|
256
269
|
- spec/dummy/app/views/no_fallback/index.mobile.erb
|
257
270
|
- spec/dummy/app/views/no_fallback/test.html.erb
|
258
271
|
- spec/dummy/app/views/no_fallback/test.js.erb
|
272
|
+
- spec/dummy/app/views/skip_xhr_request/index.html.erb
|
273
|
+
- spec/dummy/app/views/skip_xhr_request/index.js.erb
|
274
|
+
- spec/dummy/app/views/skip_xhr_request/index.mobile.erb
|
259
275
|
- spec/dummy/config/application.rb
|
260
276
|
- spec/dummy/config/boot.rb
|
261
277
|
- spec/dummy/config/database.yml
|