outdatedbrowser_rails 1.1.0 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/MIT-LICENSE +1 -1
- data/app/assets/javascripts/outdatedbrowser/outdatedBrowser.js +64 -59
- data/app/assets/javascripts/outdatedbrowser_rails/application.js +13 -0
- data/app/assets/stylesheets/outdatedbrowser/outdatedBrowser.css +1 -1
- data/app/assets/stylesheets/outdatedbrowser_rails/application.css +6 -4
- data/app/controllers/outdatedbrowser_rails/application_controller.rb +5 -0
- data/app/helpers/outdatedbrowser_rails/application_helper.rb +4 -0
- data/app/views/layouts/outdatedbrowser_rails/application.html.erb +1 -1
- data/app/views/outdatedbrowser/lang/{cz.html → cs.html} +1 -1
- data/app/views/outdatedbrowser/lang/da.html +3 -0
- data/app/views/outdatedbrowser/lang/de.html +0 -0
- data/app/views/outdatedbrowser/lang/el.html +3 -0
- data/app/views/outdatedbrowser/lang/en.html +1 -1
- data/app/views/outdatedbrowser/lang/es-pe.html +3 -0
- data/app/views/outdatedbrowser/lang/es.html +0 -0
- data/app/views/outdatedbrowser/lang/{ee.html → et.html} +1 -1
- data/app/views/outdatedbrowser/lang/fa.html +0 -0
- data/app/views/outdatedbrowser/lang/fi.html +1 -1
- data/app/views/outdatedbrowser/lang/fr.html +0 -0
- data/app/views/outdatedbrowser/lang/hu.html +1 -1
- data/app/views/outdatedbrowser/lang/id.html +0 -0
- data/app/views/outdatedbrowser/lang/it.html +0 -0
- data/app/views/outdatedbrowser/lang/ja.html +3 -0
- data/app/views/outdatedbrowser/lang/ko.html +3 -0
- data/app/views/outdatedbrowser/lang/lt.html +0 -0
- data/app/views/outdatedbrowser/lang/nb.html +4 -0
- data/app/views/outdatedbrowser/lang/nl.html +1 -1
- data/app/views/outdatedbrowser/lang/pl.html +0 -0
- data/app/views/outdatedbrowser/lang/{br.html → pt-br.html} +1 -1
- data/app/views/outdatedbrowser/lang/pt.html +0 -0
- data/app/views/outdatedbrowser/lang/ro.html +0 -0
- data/app/views/outdatedbrowser/lang/ru.html +2 -2
- data/app/views/outdatedbrowser/lang/{si.html → sl.html} +1 -1
- data/app/views/outdatedbrowser/lang/sv.html +3 -0
- data/app/views/outdatedbrowser/lang/tr.html +3 -0
- data/app/views/outdatedbrowser/lang/{ua.html → uk.html} +1 -1
- data/app/views/outdatedbrowser/lang/{cn.html → zh-cn.html} +1 -1
- data/app/views/outdatedbrowser/lang/zh-tw.html +3 -0
- data/lib/outdatedbrowser_rails/version.rb +1 -1
- data/spec/dummy/README.rdoc +15 -248
- data/spec/dummy/Rakefile +1 -2
- data/spec/dummy/app/assets/javascripts/application.js +5 -7
- data/spec/dummy/app/assets/stylesheets/application.css +7 -5
- data/spec/dummy/app/controllers/application_controller.rb +3 -1
- data/spec/dummy/app/views/layouts/application.html.erb +2 -2
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config.ru +2 -2
- data/spec/dummy/config/application.rb +5 -44
- data/spec/dummy/config/boot.rb +4 -9
- data/spec/dummy/config/database.yml +8 -8
- data/spec/dummy/config/environment.rb +3 -3
- data/spec/dummy/config/environments/development.rb +22 -18
- data/spec/dummy/config/environments/production.rb +46 -34
- data/spec/dummy/config/environments/test.rb +19 -14
- data/spec/dummy/config/initializers/assets.rb +12 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +6 -5
- data/spec/dummy/config/initializers/mime_types.rb +0 -1
- data/spec/dummy/config/initializers/session_store.rb +1 -6
- data/spec/dummy/config/initializers/wrap_parameters.rb +6 -6
- data/spec/dummy/config/locales/en.yml +20 -2
- data/spec/dummy/config/routes.rb +54 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/public/404.html +54 -13
- data/spec/dummy/public/422.html +54 -13
- data/spec/dummy/public/500.html +53 -12
- data/spec/features/asset_integration_spec.rb +2 -2
- metadata +52 -110
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +0 -2335
- data/spec/dummy/log/test.log +0 -25
- data/spec/dummy/tmp/cache/assets/C0B/6C0/sprockets%2F32ba372100048e769a8961c142010d29 +0 -0
- data/spec/dummy/tmp/cache/assets/C55/A90/sprockets%2Fc867534061993dd00f01965a87c8451a +0 -0
- data/spec/dummy/tmp/cache/assets/C66/070/sprockets%2F25064892e3836bb657e5d6446b86574e +0 -0
- data/spec/dummy/tmp/cache/assets/C76/D90/sprockets%2F317679c439a52430e7a01408fab2166e +0 -0
- data/spec/dummy/tmp/cache/assets/C85/6B0/sprockets%2F19e3c3829361ad685564711217e9d1dc +0 -0
- data/spec/dummy/tmp/cache/assets/CB7/D90/sprockets%2F324258d96111fb8a7ad85897701e41fc +0 -0
- data/spec/dummy/tmp/cache/assets/CCE/9C0/sprockets%2Fbe5308ba0221fb7e0f54652c6014e097 +0 -0
- data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/CE9/850/sprockets%2F4a767a0e4b8d87e90e7d1b126c379724 +0 -0
- data/spec/dummy/tmp/cache/assets/CEF/8E0/sprockets%2Fee75db26e457cb225a52664757fc7845 +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D3C/810/sprockets%2Ff2abbf8c661ed6993fb163338c024f20 +0 -0
- data/spec/dummy/tmp/cache/assets/D42/CC0/sprockets%2Fc193ff3495a3beb1c539e1bd3425d759 +0 -0
- data/spec/dummy/tmp/cache/assets/D45/7D0/sprockets%2Ff6e3c118bd192d82fe3896e9b116dd21 +0 -0
- data/spec/dummy/tmp/cache/assets/D4A/C40/sprockets%2Fdfdafc62f1e86575d880bdb131079486 +0 -0
- data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/D60/9D0/sprockets%2F9afc50a2bc1969a7205225d2d2ae6bd5 +0 -0
- data/spec/dummy/tmp/cache/assets/D67/190/sprockets%2Fba2a601dadba4b704f5a79199892fc60 +0 -0
- data/spec/dummy/tmp/cache/assets/D68/B30/sprockets%2Fe066c701face5c4fa3b7227c6b87b614 +0 -0
- data/spec/dummy/tmp/cache/assets/D78/CF0/sprockets%2F8e5507fc15ad9329b90be288f0f27acf +0 -0
- data/spec/dummy/tmp/cache/assets/D83/C10/sprockets%2F0c972efe069c3bf7390c2959fb7ee3e5 +0 -0
- data/spec/dummy/tmp/cache/assets/D95/AD0/sprockets%2F33ea8a386351bf5a9815f4bedaba53d0 +0 -0
- data/spec/dummy/tmp/cache/assets/D95/BD0/sprockets%2Fd0cd11b5ffec05bed60ce336858a3464 +0 -0
- data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/DE8/EC0/sprockets%2F1bb2ad094ca709e48c46adabe3a028bd +0 -0
- data/spec/dummy/tmp/cache/assets/E03/580/sprockets%2F03b5636ba83de65f19fc8f8cd3ba0fdf +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/pids/server.pid +0 -1
metadata
CHANGED
|
@@ -1,78 +1,58 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: outdatedbrowser_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luisa Lima
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-04-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - ~>
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
20
|
-
- - '>='
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.2.16
|
|
23
|
-
type: :runtime
|
|
24
|
-
prerelease: false
|
|
25
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
-
requirements:
|
|
27
|
-
- - ~>
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: '3.2'
|
|
30
|
-
- - '>='
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.2.16
|
|
33
|
-
- !ruby/object:Gem::Dependency
|
|
34
|
-
name: i18n
|
|
35
|
-
requirement: !ruby/object:Gem::Requirement
|
|
36
|
-
requirements:
|
|
37
|
-
- - ~>
|
|
38
|
-
- !ruby/object:Gem::Version
|
|
39
|
-
version: '0.6'
|
|
19
|
+
version: '4.2'
|
|
40
20
|
type: :runtime
|
|
41
21
|
prerelease: false
|
|
42
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
23
|
requirements:
|
|
44
|
-
- - ~>
|
|
24
|
+
- - "~>"
|
|
45
25
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '
|
|
26
|
+
version: '4.2'
|
|
47
27
|
- !ruby/object:Gem::Dependency
|
|
48
28
|
name: capybara
|
|
49
29
|
requirement: !ruby/object:Gem::Requirement
|
|
50
30
|
requirements:
|
|
51
|
-
- -
|
|
31
|
+
- - ">="
|
|
52
32
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '
|
|
33
|
+
version: '0'
|
|
54
34
|
type: :development
|
|
55
35
|
prerelease: false
|
|
56
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
37
|
requirements:
|
|
58
|
-
- -
|
|
38
|
+
- - ">="
|
|
59
39
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: '
|
|
40
|
+
version: '0'
|
|
61
41
|
- !ruby/object:Gem::Dependency
|
|
62
42
|
name: rspec-rails
|
|
63
43
|
requirement: !ruby/object:Gem::Requirement
|
|
64
44
|
requirements:
|
|
65
|
-
- -
|
|
45
|
+
- - ">="
|
|
66
46
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: '
|
|
47
|
+
version: '0'
|
|
68
48
|
type: :development
|
|
69
49
|
prerelease: false
|
|
70
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
71
51
|
requirements:
|
|
72
|
-
- -
|
|
52
|
+
- - ">="
|
|
73
53
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: '
|
|
75
|
-
description: A gem to automate using outdated-browser with Rails >=
|
|
54
|
+
version: '0'
|
|
55
|
+
description: A gem to automate using outdated-browser with Rails >= 4.
|
|
76
56
|
email:
|
|
77
57
|
- luisamoyalima@gmail.com
|
|
78
58
|
executables: []
|
|
@@ -84,31 +64,43 @@ files:
|
|
|
84
64
|
- Rakefile
|
|
85
65
|
- app/assets/javascripts/outdatedbrowser/outdatedBrowser.js
|
|
86
66
|
- app/assets/javascripts/outdatedbrowser/require_outdatedbrowser.js.erb
|
|
67
|
+
- app/assets/javascripts/outdatedbrowser_rails/application.js
|
|
87
68
|
- app/assets/stylesheets/outdatedbrowser/outdatedBrowser.css
|
|
88
69
|
- app/assets/stylesheets/outdatedbrowser_rails/application.css
|
|
70
|
+
- app/controllers/outdatedbrowser_rails/application_controller.rb
|
|
71
|
+
- app/helpers/outdatedbrowser_rails/application_helper.rb
|
|
89
72
|
- app/views/layouts/outdatedbrowser_rails/application.html.erb
|
|
90
73
|
- app/views/outdatedbrowser/_outdatedbrowser.html.erb
|
|
91
|
-
- app/views/outdatedbrowser/lang/
|
|
92
|
-
- app/views/outdatedbrowser/lang/
|
|
93
|
-
- app/views/outdatedbrowser/lang/cz.html
|
|
74
|
+
- app/views/outdatedbrowser/lang/cs.html
|
|
75
|
+
- app/views/outdatedbrowser/lang/da.html
|
|
94
76
|
- app/views/outdatedbrowser/lang/de.html
|
|
95
|
-
- app/views/outdatedbrowser/lang/
|
|
77
|
+
- app/views/outdatedbrowser/lang/el.html
|
|
96
78
|
- app/views/outdatedbrowser/lang/en.html
|
|
79
|
+
- app/views/outdatedbrowser/lang/es-pe.html
|
|
97
80
|
- app/views/outdatedbrowser/lang/es.html
|
|
81
|
+
- app/views/outdatedbrowser/lang/et.html
|
|
98
82
|
- app/views/outdatedbrowser/lang/fa.html
|
|
99
83
|
- app/views/outdatedbrowser/lang/fi.html
|
|
100
84
|
- app/views/outdatedbrowser/lang/fr.html
|
|
101
85
|
- app/views/outdatedbrowser/lang/hu.html
|
|
102
86
|
- app/views/outdatedbrowser/lang/id.html
|
|
103
87
|
- app/views/outdatedbrowser/lang/it.html
|
|
88
|
+
- app/views/outdatedbrowser/lang/ja.html
|
|
89
|
+
- app/views/outdatedbrowser/lang/ko.html
|
|
104
90
|
- app/views/outdatedbrowser/lang/lt.html
|
|
91
|
+
- app/views/outdatedbrowser/lang/nb.html
|
|
105
92
|
- app/views/outdatedbrowser/lang/nl.html
|
|
106
93
|
- app/views/outdatedbrowser/lang/pl.html
|
|
94
|
+
- app/views/outdatedbrowser/lang/pt-br.html
|
|
107
95
|
- app/views/outdatedbrowser/lang/pt.html
|
|
108
96
|
- app/views/outdatedbrowser/lang/ro.html
|
|
109
97
|
- app/views/outdatedbrowser/lang/ru.html
|
|
110
|
-
- app/views/outdatedbrowser/lang/
|
|
111
|
-
- app/views/outdatedbrowser/lang/
|
|
98
|
+
- app/views/outdatedbrowser/lang/sl.html
|
|
99
|
+
- app/views/outdatedbrowser/lang/sv.html
|
|
100
|
+
- app/views/outdatedbrowser/lang/tr.html
|
|
101
|
+
- app/views/outdatedbrowser/lang/uk.html
|
|
102
|
+
- app/views/outdatedbrowser/lang/zh-cn.html
|
|
103
|
+
- app/views/outdatedbrowser/lang/zh-tw.html
|
|
112
104
|
- config/routes.rb
|
|
113
105
|
- lib/outdatedbrowser_rails.rb
|
|
114
106
|
- lib/outdatedbrowser_rails/engine.rb
|
|
@@ -123,6 +115,10 @@ files:
|
|
|
123
115
|
- spec/dummy/app/helpers/application_helper.rb
|
|
124
116
|
- spec/dummy/app/views/dummy/index.html.erb
|
|
125
117
|
- spec/dummy/app/views/layouts/application.html.erb
|
|
118
|
+
- spec/dummy/bin/bundle
|
|
119
|
+
- spec/dummy/bin/rails
|
|
120
|
+
- spec/dummy/bin/rake
|
|
121
|
+
- spec/dummy/bin/setup
|
|
126
122
|
- spec/dummy/config.ru
|
|
127
123
|
- spec/dummy/config/application.rb
|
|
128
124
|
- spec/dummy/config/boot.rb
|
|
@@ -131,7 +127,10 @@ files:
|
|
|
131
127
|
- spec/dummy/config/environments/development.rb
|
|
132
128
|
- spec/dummy/config/environments/production.rb
|
|
133
129
|
- spec/dummy/config/environments/test.rb
|
|
130
|
+
- spec/dummy/config/initializers/assets.rb
|
|
134
131
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
132
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
|
133
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
135
134
|
- spec/dummy/config/initializers/inflections.rb
|
|
136
135
|
- spec/dummy/config/initializers/mime_types.rb
|
|
137
136
|
- spec/dummy/config/initializers/secret_token.rb
|
|
@@ -140,44 +139,12 @@ files:
|
|
|
140
139
|
- spec/dummy/config/locales/de.yml
|
|
141
140
|
- spec/dummy/config/locales/en.yml
|
|
142
141
|
- spec/dummy/config/routes.rb
|
|
143
|
-
- spec/dummy/
|
|
144
|
-
- spec/dummy/db/test.sqlite3
|
|
145
|
-
- spec/dummy/log/development.log
|
|
146
|
-
- spec/dummy/log/test.log
|
|
142
|
+
- spec/dummy/config/secrets.yml
|
|
147
143
|
- spec/dummy/public/404.html
|
|
148
144
|
- spec/dummy/public/422.html
|
|
149
145
|
- spec/dummy/public/500.html
|
|
150
146
|
- spec/dummy/public/favicon.ico
|
|
151
147
|
- spec/dummy/script/rails
|
|
152
|
-
- spec/dummy/tmp/cache/assets/C0B/6C0/sprockets%2F32ba372100048e769a8961c142010d29
|
|
153
|
-
- spec/dummy/tmp/cache/assets/C55/A90/sprockets%2Fc867534061993dd00f01965a87c8451a
|
|
154
|
-
- spec/dummy/tmp/cache/assets/C66/070/sprockets%2F25064892e3836bb657e5d6446b86574e
|
|
155
|
-
- spec/dummy/tmp/cache/assets/C76/D90/sprockets%2F317679c439a52430e7a01408fab2166e
|
|
156
|
-
- spec/dummy/tmp/cache/assets/C85/6B0/sprockets%2F19e3c3829361ad685564711217e9d1dc
|
|
157
|
-
- spec/dummy/tmp/cache/assets/CB7/D90/sprockets%2F324258d96111fb8a7ad85897701e41fc
|
|
158
|
-
- spec/dummy/tmp/cache/assets/CCE/9C0/sprockets%2Fbe5308ba0221fb7e0f54652c6014e097
|
|
159
|
-
- spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
|
160
|
-
- spec/dummy/tmp/cache/assets/CE9/850/sprockets%2F4a767a0e4b8d87e90e7d1b126c379724
|
|
161
|
-
- spec/dummy/tmp/cache/assets/CEF/8E0/sprockets%2Fee75db26e457cb225a52664757fc7845
|
|
162
|
-
- spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
|
163
|
-
- spec/dummy/tmp/cache/assets/D3C/810/sprockets%2Ff2abbf8c661ed6993fb163338c024f20
|
|
164
|
-
- spec/dummy/tmp/cache/assets/D42/CC0/sprockets%2Fc193ff3495a3beb1c539e1bd3425d759
|
|
165
|
-
- spec/dummy/tmp/cache/assets/D45/7D0/sprockets%2Ff6e3c118bd192d82fe3896e9b116dd21
|
|
166
|
-
- spec/dummy/tmp/cache/assets/D4A/C40/sprockets%2Fdfdafc62f1e86575d880bdb131079486
|
|
167
|
-
- spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
|
168
|
-
- spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
|
169
|
-
- spec/dummy/tmp/cache/assets/D60/9D0/sprockets%2F9afc50a2bc1969a7205225d2d2ae6bd5
|
|
170
|
-
- spec/dummy/tmp/cache/assets/D67/190/sprockets%2Fba2a601dadba4b704f5a79199892fc60
|
|
171
|
-
- spec/dummy/tmp/cache/assets/D68/B30/sprockets%2Fe066c701face5c4fa3b7227c6b87b614
|
|
172
|
-
- spec/dummy/tmp/cache/assets/D78/CF0/sprockets%2F8e5507fc15ad9329b90be288f0f27acf
|
|
173
|
-
- spec/dummy/tmp/cache/assets/D83/C10/sprockets%2F0c972efe069c3bf7390c2959fb7ee3e5
|
|
174
|
-
- spec/dummy/tmp/cache/assets/D95/AD0/sprockets%2F33ea8a386351bf5a9815f4bedaba53d0
|
|
175
|
-
- spec/dummy/tmp/cache/assets/D95/BD0/sprockets%2Fd0cd11b5ffec05bed60ce336858a3464
|
|
176
|
-
- spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
|
177
|
-
- spec/dummy/tmp/cache/assets/DE8/EC0/sprockets%2F1bb2ad094ca709e48c46adabe3a028bd
|
|
178
|
-
- spec/dummy/tmp/cache/assets/E03/580/sprockets%2F03b5636ba83de65f19fc8f8cd3ba0fdf
|
|
179
|
-
- spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
|
180
|
-
- spec/dummy/tmp/pids/server.pid
|
|
181
148
|
- spec/features/asset_integration_spec.rb
|
|
182
149
|
- spec/spec_helper.rb
|
|
183
150
|
homepage: https://github.com/luisalima/outdatedbrowser_rails
|
|
@@ -190,17 +157,17 @@ require_paths:
|
|
|
190
157
|
- lib
|
|
191
158
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
192
159
|
requirements:
|
|
193
|
-
- -
|
|
160
|
+
- - ">="
|
|
194
161
|
- !ruby/object:Gem::Version
|
|
195
162
|
version: '0'
|
|
196
163
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
197
164
|
requirements:
|
|
198
|
-
- -
|
|
165
|
+
- - ">="
|
|
199
166
|
- !ruby/object:Gem::Version
|
|
200
167
|
version: '0'
|
|
201
168
|
requirements: []
|
|
202
169
|
rubyforge_project:
|
|
203
|
-
rubygems_version: 2.
|
|
170
|
+
rubygems_version: 2.5.1
|
|
204
171
|
signing_key:
|
|
205
172
|
specification_version: 4
|
|
206
173
|
summary: Adds outdatedbrowser assets to the rails asset pipeline.
|
|
@@ -212,6 +179,10 @@ test_files:
|
|
|
212
179
|
- spec/dummy/app/helpers/application_helper.rb
|
|
213
180
|
- spec/dummy/app/views/dummy/index.html.erb
|
|
214
181
|
- spec/dummy/app/views/layouts/application.html.erb
|
|
182
|
+
- spec/dummy/bin/bundle
|
|
183
|
+
- spec/dummy/bin/rails
|
|
184
|
+
- spec/dummy/bin/rake
|
|
185
|
+
- spec/dummy/bin/setup
|
|
215
186
|
- spec/dummy/config/application.rb
|
|
216
187
|
- spec/dummy/config/boot.rb
|
|
217
188
|
- spec/dummy/config/database.yml
|
|
@@ -219,7 +190,10 @@ test_files:
|
|
|
219
190
|
- spec/dummy/config/environments/development.rb
|
|
220
191
|
- spec/dummy/config/environments/production.rb
|
|
221
192
|
- spec/dummy/config/environments/test.rb
|
|
193
|
+
- spec/dummy/config/initializers/assets.rb
|
|
222
194
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
195
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
|
196
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
223
197
|
- spec/dummy/config/initializers/inflections.rb
|
|
224
198
|
- spec/dummy/config/initializers/mime_types.rb
|
|
225
199
|
- spec/dummy/config/initializers/secret_token.rb
|
|
@@ -228,11 +202,8 @@ test_files:
|
|
|
228
202
|
- spec/dummy/config/locales/de.yml
|
|
229
203
|
- spec/dummy/config/locales/en.yml
|
|
230
204
|
- spec/dummy/config/routes.rb
|
|
205
|
+
- spec/dummy/config/secrets.yml
|
|
231
206
|
- spec/dummy/config.ru
|
|
232
|
-
- spec/dummy/db/development.sqlite3
|
|
233
|
-
- spec/dummy/db/test.sqlite3
|
|
234
|
-
- spec/dummy/log/development.log
|
|
235
|
-
- spec/dummy/log/test.log
|
|
236
207
|
- spec/dummy/public/404.html
|
|
237
208
|
- spec/dummy/public/422.html
|
|
238
209
|
- spec/dummy/public/500.html
|
|
@@ -240,34 +211,5 @@ test_files:
|
|
|
240
211
|
- spec/dummy/Rakefile
|
|
241
212
|
- spec/dummy/README.rdoc
|
|
242
213
|
- spec/dummy/script/rails
|
|
243
|
-
- spec/dummy/tmp/cache/assets/C0B/6C0/sprockets%2F32ba372100048e769a8961c142010d29
|
|
244
|
-
- spec/dummy/tmp/cache/assets/C55/A90/sprockets%2Fc867534061993dd00f01965a87c8451a
|
|
245
|
-
- spec/dummy/tmp/cache/assets/C66/070/sprockets%2F25064892e3836bb657e5d6446b86574e
|
|
246
|
-
- spec/dummy/tmp/cache/assets/C76/D90/sprockets%2F317679c439a52430e7a01408fab2166e
|
|
247
|
-
- spec/dummy/tmp/cache/assets/C85/6B0/sprockets%2F19e3c3829361ad685564711217e9d1dc
|
|
248
|
-
- spec/dummy/tmp/cache/assets/CB7/D90/sprockets%2F324258d96111fb8a7ad85897701e41fc
|
|
249
|
-
- spec/dummy/tmp/cache/assets/CCE/9C0/sprockets%2Fbe5308ba0221fb7e0f54652c6014e097
|
|
250
|
-
- spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
|
|
251
|
-
- spec/dummy/tmp/cache/assets/CE9/850/sprockets%2F4a767a0e4b8d87e90e7d1b126c379724
|
|
252
|
-
- spec/dummy/tmp/cache/assets/CEF/8E0/sprockets%2Fee75db26e457cb225a52664757fc7845
|
|
253
|
-
- spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
|
|
254
|
-
- spec/dummy/tmp/cache/assets/D3C/810/sprockets%2Ff2abbf8c661ed6993fb163338c024f20
|
|
255
|
-
- spec/dummy/tmp/cache/assets/D42/CC0/sprockets%2Fc193ff3495a3beb1c539e1bd3425d759
|
|
256
|
-
- spec/dummy/tmp/cache/assets/D45/7D0/sprockets%2Ff6e3c118bd192d82fe3896e9b116dd21
|
|
257
|
-
- spec/dummy/tmp/cache/assets/D4A/C40/sprockets%2Fdfdafc62f1e86575d880bdb131079486
|
|
258
|
-
- spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
|
|
259
|
-
- spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
|
|
260
|
-
- spec/dummy/tmp/cache/assets/D60/9D0/sprockets%2F9afc50a2bc1969a7205225d2d2ae6bd5
|
|
261
|
-
- spec/dummy/tmp/cache/assets/D67/190/sprockets%2Fba2a601dadba4b704f5a79199892fc60
|
|
262
|
-
- spec/dummy/tmp/cache/assets/D68/B30/sprockets%2Fe066c701face5c4fa3b7227c6b87b614
|
|
263
|
-
- spec/dummy/tmp/cache/assets/D78/CF0/sprockets%2F8e5507fc15ad9329b90be288f0f27acf
|
|
264
|
-
- spec/dummy/tmp/cache/assets/D83/C10/sprockets%2F0c972efe069c3bf7390c2959fb7ee3e5
|
|
265
|
-
- spec/dummy/tmp/cache/assets/D95/AD0/sprockets%2F33ea8a386351bf5a9815f4bedaba53d0
|
|
266
|
-
- spec/dummy/tmp/cache/assets/D95/BD0/sprockets%2Fd0cd11b5ffec05bed60ce336858a3464
|
|
267
|
-
- spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
|
|
268
|
-
- spec/dummy/tmp/cache/assets/DE8/EC0/sprockets%2F1bb2ad094ca709e48c46adabe3a028bd
|
|
269
|
-
- spec/dummy/tmp/cache/assets/E03/580/sprockets%2F03b5636ba83de65f19fc8f8cd3ba0fdf
|
|
270
|
-
- spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
|
|
271
|
-
- spec/dummy/tmp/pids/server.pid
|
|
272
214
|
- spec/features/asset_integration_spec.rb
|
|
273
215
|
- spec/spec_helper.rb
|
|
File without changes
|
data/spec/dummy/db/test.sqlite3
DELETED
|
File without changes
|
|
@@ -1,2335 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 16:36:08 +0100
|
|
4
|
-
Connecting to database specified by database.yml
|
|
5
|
-
|
|
6
|
-
SQLite3::CantOpenException (unable to open database file):
|
|
7
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `initialize'
|
|
8
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `new'
|
|
9
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `sqlite3_connection'
|
|
10
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:315:in `new_connection'
|
|
11
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:325:in `checkout_new_connection'
|
|
12
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:247:in `block (2 levels) in checkout'
|
|
13
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `loop'
|
|
14
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `block in checkout'
|
|
15
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
|
|
16
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:239:in `checkout'
|
|
17
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:102:in `block in connection'
|
|
18
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
|
|
19
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:101:in `connection'
|
|
20
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
|
21
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
|
22
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
|
23
|
-
activerecord (3.2.21) lib/active_record/query_cache.rb:67:in `rescue in call'
|
|
24
|
-
activerecord (3.2.21) lib/active_record/query_cache.rb:61:in `call'
|
|
25
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
26
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
27
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:405:in `_run__68209897214163002__call__413003625786832872__callbacks'
|
|
28
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
29
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
30
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
31
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
32
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
33
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
34
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
35
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
36
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
37
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
38
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
39
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
40
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
41
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
42
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
43
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
44
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
45
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
46
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
47
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
48
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
49
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
50
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
51
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
52
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
53
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
|
57
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
|
58
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (31.1ms)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 16:36:35 +0100
|
|
62
|
-
Connecting to database specified by database.yml
|
|
63
|
-
|
|
64
|
-
SQLite3::CantOpenException (unable to open database file):
|
|
65
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `initialize'
|
|
66
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `new'
|
|
67
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `sqlite3_connection'
|
|
68
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:315:in `new_connection'
|
|
69
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:325:in `checkout_new_connection'
|
|
70
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:247:in `block (2 levels) in checkout'
|
|
71
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `loop'
|
|
72
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `block in checkout'
|
|
73
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
|
|
74
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:239:in `checkout'
|
|
75
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:102:in `block in connection'
|
|
76
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
|
|
77
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:101:in `connection'
|
|
78
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
|
79
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
|
80
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
|
81
|
-
activerecord (3.2.21) lib/active_record/query_cache.rb:67:in `rescue in call'
|
|
82
|
-
activerecord (3.2.21) lib/active_record/query_cache.rb:61:in `call'
|
|
83
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
84
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
85
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:405:in `_run__111088061608186908__call__2147833448380693506__callbacks'
|
|
86
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
87
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
88
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
89
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
90
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
91
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
92
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
93
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
94
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
95
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
96
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
97
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
98
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
99
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
100
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
101
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
102
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
103
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
104
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
105
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
106
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
107
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
108
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
109
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
110
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
111
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
|
115
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms)
|
|
116
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (37.4ms)
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 16:37:41 +0100
|
|
120
|
-
Connecting to database specified by database.yml
|
|
121
|
-
|
|
122
|
-
SQLite3::CantOpenException (unable to open database file):
|
|
123
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `initialize'
|
|
124
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `new'
|
|
125
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `sqlite3_connection'
|
|
126
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:315:in `new_connection'
|
|
127
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:325:in `checkout_new_connection'
|
|
128
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:247:in `block (2 levels) in checkout'
|
|
129
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `loop'
|
|
130
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `block in checkout'
|
|
131
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
|
|
132
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:239:in `checkout'
|
|
133
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:102:in `block in connection'
|
|
134
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
|
|
135
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:101:in `connection'
|
|
136
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
|
137
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
|
138
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
|
139
|
-
activerecord (3.2.21) lib/active_record/query_cache.rb:67:in `rescue in call'
|
|
140
|
-
activerecord (3.2.21) lib/active_record/query_cache.rb:61:in `call'
|
|
141
|
-
activerecord (3.2.21) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
142
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
143
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:405:in `_run__1236843641002932619__call__861561870695390388__callbacks'
|
|
144
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
145
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
146
|
-
activesupport (3.2.21) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
147
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
148
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
149
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
150
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
151
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
152
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
153
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
154
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
155
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
156
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
157
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
158
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
159
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
160
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
161
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
162
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
163
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
164
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
165
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
166
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
167
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
168
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
169
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
|
173
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
|
|
174
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (33.9ms)
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 16:38:33 +0100
|
|
178
|
-
Connecting to database specified by database.yml
|
|
179
|
-
Processing by DummyController#index as HTML
|
|
180
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (7.4ms)
|
|
181
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 1934)
|
|
182
|
-
Rendered dummy/index.html.erb within layouts/application (19.8ms)
|
|
183
|
-
Compiled outdatedbrowser/outdatedBrowser.css (0ms) (pid 1934)
|
|
184
|
-
Compiled application.css (3ms) (pid 1934)
|
|
185
|
-
Compiled jquery.js (3ms) (pid 1934)
|
|
186
|
-
Compiled jquery_ujs.js (21ms) (pid 1934)
|
|
187
|
-
Compiled outdatedbrowser/outdatedBrowser.js (0ms) (pid 1934)
|
|
188
|
-
Compiled application.js (38ms) (pid 1934)
|
|
189
|
-
Completed 200 OK in 80.6ms (Views: 80.3ms | ActiveRecord: 0.0ms)
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 16:38:33 +0100
|
|
193
|
-
Served asset /application.css - 200 OK (10ms)
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 16:38:33 +0100
|
|
197
|
-
Served asset /application.js - 200 OK (3ms)
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 16:38:33 +0100
|
|
201
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 200 OK (1ms)
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 16:38:33 +0100
|
|
205
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (1ms)
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 16:38:33 +0100
|
|
209
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 16:38:33 +0100
|
|
213
|
-
Served asset /jquery_ujs.js - 200 OK (1ms)
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 16:38:33 +0100
|
|
217
|
-
Served asset /jquery.js - 200 OK (1ms)
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
Started GET "/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 16:38:33 +0100
|
|
221
|
-
|
|
222
|
-
ActionController::RoutingError (No route matches [GET] "/outdatedbrowser/lang/en.html"):
|
|
223
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
224
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
225
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
226
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
227
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
228
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
229
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
230
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
231
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
232
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
233
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
234
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
235
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
236
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
237
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
238
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
239
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
240
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
241
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
242
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
Started GET "/outdatedbrowser" for 127.0.0.1 at 2015-03-30 16:38:45 +0100
|
|
249
|
-
|
|
250
|
-
ActionController::RoutingError (No route matches [GET] "/outdatedbrowser"):
|
|
251
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
252
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
253
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
254
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
255
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
256
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
257
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
258
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
259
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
260
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
261
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
262
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
263
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
264
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
265
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
266
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
267
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
268
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
269
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
270
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
Started GET "/outdatedbrowser" for 127.0.0.1 at 2015-03-30 16:40:40 +0100
|
|
277
|
-
Connecting to database specified by database.yml
|
|
278
|
-
|
|
279
|
-
ActionController::RoutingError (No route matches [GET] "/outdatedbrowser"):
|
|
280
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
281
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
282
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
283
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
284
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
285
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
286
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
287
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
288
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
289
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
290
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
291
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
292
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
293
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
294
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
295
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
296
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
297
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
298
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
299
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (27.6ms)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
Started GET "/outdatedbrowser/outdatedbrowser.js" for 127.0.0.1 at 2015-03-30 16:40:51 +0100
|
|
306
|
-
|
|
307
|
-
ActionController::RoutingError (No route matches [GET] "/outdatedbrowser/outdatedbrowser.js"):
|
|
308
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
309
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
310
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
311
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
312
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
313
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
314
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
315
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
316
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
317
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
318
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
319
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
320
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
321
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
322
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
323
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
324
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
325
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
326
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
327
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
Started GET "/outdatedbrowser/outdatedBrowser.js" for 127.0.0.1 at 2015-03-30 16:41:30 +0100
|
|
334
|
-
|
|
335
|
-
ActionController::RoutingError (No route matches [GET] "/outdatedbrowser/outdatedBrowser.js"):
|
|
336
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
337
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
338
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
339
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
340
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
341
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
342
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
343
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
344
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
345
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
346
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
347
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
348
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
349
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
350
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
351
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
352
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
353
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
354
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
355
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
Started GET "/application.js" for 127.0.0.1 at 2015-03-30 16:41:42 +0100
|
|
362
|
-
|
|
363
|
-
ActionController::RoutingError (No route matches [GET] "/application.js"):
|
|
364
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
365
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
366
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
367
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
368
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
369
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
370
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
371
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
372
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
373
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
374
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
375
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
376
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
377
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
378
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
379
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
380
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
381
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
382
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
383
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
Started GET "/assets/application.js" for 127.0.0.1 at 2015-03-30 16:41:47 +0100
|
|
390
|
-
Served asset /application.js - 200 OK (5ms)
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js" for 127.0.0.1 at 2015-03-30 16:42:05 +0100
|
|
394
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (4ms)
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
Started GET "/assets/outdatedbrowser/lang" for 127.0.0.1 at 2015-03-30 16:42:45 +0100
|
|
398
|
-
Served asset /outdatedbrowser/lang - 404 Not Found (1ms)
|
|
399
|
-
|
|
400
|
-
ActionController::RoutingError (No route matches [GET] "/assets/outdatedbrowser/lang"):
|
|
401
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
402
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
403
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
404
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
405
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
406
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
407
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
408
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
409
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
410
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
411
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
412
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
413
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
414
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
415
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
416
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
417
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
418
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
419
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
420
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 16:42:49 +0100
|
|
427
|
-
Served asset /outdatedbrowser/lang/en.html - 200 OK (3ms)
|
|
428
|
-
Connecting to database specified by database.yml
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 16:49:19 +0100
|
|
432
|
-
Connecting to database specified by database.yml
|
|
433
|
-
Processing by DummyController#index as HTML
|
|
434
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (3.6ms)
|
|
435
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 3983)
|
|
436
|
-
Rendered dummy/index.html.erb within layouts/application (13.7ms)
|
|
437
|
-
Completed 200 OK in 49.9ms (Views: 49.6ms | ActiveRecord: 0.0ms)
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 16:49:19 +0100
|
|
441
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 16:49:19 +0100
|
|
445
|
-
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 16:49:19 +0100
|
|
449
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (3ms)
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 16:49:19 +0100
|
|
453
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 16:49:19 +0100
|
|
457
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (0ms)
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 16:49:19 +0100
|
|
461
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (0ms)
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 16:49:19 +0100
|
|
465
|
-
Served asset /application.js - 304 Not Modified (2ms)
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:00:54 +0100
|
|
469
|
-
Connecting to database specified by database.yml
|
|
470
|
-
Processing by DummyController#index as HTML
|
|
471
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
472
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 6651)
|
|
473
|
-
Rendered dummy/index.html.erb within layouts/application (31.5ms)
|
|
474
|
-
Completed 200 OK in 44.2ms (Views: 43.9ms | ActiveRecord: 0.0ms)
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:00:55 +0100
|
|
478
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:00:55 +0100
|
|
482
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:00:55 +0100
|
|
486
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:00:55 +0100
|
|
490
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:00:55 +0100
|
|
494
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:00:55 +0100
|
|
498
|
-
Served asset /application.js - 304 Not Modified (2ms)
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:00:55 +0100
|
|
502
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (0ms)
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
Started GET "/assets/outdatedbrowser/lang/" for 127.0.0.1 at 2015-03-30 17:00:55 +0100
|
|
506
|
-
Served asset /outdatedbrowser/lang - 404 Not Found (1ms)
|
|
507
|
-
|
|
508
|
-
ActionController::RoutingError (No route matches [GET] "/assets/outdatedbrowser/lang"):
|
|
509
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
510
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
511
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
512
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
513
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
514
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
515
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
516
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
517
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
518
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
519
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
520
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
521
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
522
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
523
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
524
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
525
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
526
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
527
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
528
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:02:33 +0100
|
|
535
|
-
Connecting to database specified by database.yml
|
|
536
|
-
Processing by DummyController#index as HTML
|
|
537
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.3ms)
|
|
538
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 6912)
|
|
539
|
-
Rendered dummy/index.html.erb within layouts/application (12.2ms)
|
|
540
|
-
Completed 200 OK in 24.3ms (Views: 23.9ms | ActiveRecord: 0.0ms)
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:02:33 +0100
|
|
544
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:02:33 +0100
|
|
548
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:02:33 +0100
|
|
552
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:02:33 +0100
|
|
556
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:02:33 +0100
|
|
560
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:02:33 +0100
|
|
564
|
-
Served asset /application.js - 304 Not Modified (3ms)
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:02:33 +0100
|
|
568
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
Started GET "/assets/outdatedbrowser/javascripts/lang/" for 127.0.0.1 at 2015-03-30 17:02:33 +0100
|
|
572
|
-
Served asset /outdatedbrowser/javascripts/lang - 404 Not Found (1ms)
|
|
573
|
-
|
|
574
|
-
ActionController::RoutingError (No route matches [GET] "/assets/outdatedbrowser/javascripts/lang"):
|
|
575
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
576
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
577
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
578
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
579
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
580
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
581
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
582
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
583
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
584
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
585
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
586
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
587
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
588
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
589
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
590
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
591
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
592
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
593
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
594
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:07:18 +0100
|
|
601
|
-
Connecting to database specified by database.yml
|
|
602
|
-
Processing by DummyController#index as HTML
|
|
603
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.3ms)
|
|
604
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 8853)
|
|
605
|
-
Rendered dummy/index.html.erb within layouts/application (10.6ms)
|
|
606
|
-
Completed 200 OK in 22.1ms (Views: 21.7ms | ActiveRecord: 0.0ms)
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:07:18 +0100
|
|
610
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (2ms)
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:07:18 +0100
|
|
614
|
-
Served asset /application.js - 304 Not Modified (5ms)
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:07:18 +0100
|
|
618
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:07:18 +0100
|
|
622
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:07:18 +0100
|
|
626
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:07:18 +0100
|
|
630
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:07:18 +0100
|
|
634
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
Started GET "/assets/javascripts/outdatedbrowser/lang/" for 127.0.0.1 at 2015-03-30 17:07:18 +0100
|
|
638
|
-
Served asset /javascripts/outdatedbrowser/lang - 404 Not Found (1ms)
|
|
639
|
-
|
|
640
|
-
ActionController::RoutingError (No route matches [GET] "/assets/javascripts/outdatedbrowser/lang"):
|
|
641
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
642
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
643
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
644
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
645
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
646
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
647
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
648
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
649
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
650
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
651
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
652
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
653
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
654
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
655
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
656
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
657
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
658
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
659
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
660
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
Started GET "/assets/javascripts/outdatedbrowser/outdatedBrowser.js" for 127.0.0.1 at 2015-03-30 17:07:50 +0100
|
|
667
|
-
Served asset /javascripts/outdatedbrowser/outdatedBrowser.js - 404 Not Found (1ms)
|
|
668
|
-
|
|
669
|
-
ActionController::RoutingError (No route matches [GET] "/assets/javascripts/outdatedbrowser/outdatedBrowser.js"):
|
|
670
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
671
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
672
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
673
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
674
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
675
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
676
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
677
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
678
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
679
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
680
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
681
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
682
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
683
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
684
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
685
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
686
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
687
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
688
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
689
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js" for 127.0.0.1 at 2015-03-30 17:07:55 +0100
|
|
696
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
Started GET "/assets/outdatedbrowser/lang" for 127.0.0.1 at 2015-03-30 17:08:02 +0100
|
|
700
|
-
Served asset /outdatedbrowser/lang - 404 Not Found (2ms)
|
|
701
|
-
|
|
702
|
-
ActionController::RoutingError (No route matches [GET] "/assets/outdatedbrowser/lang"):
|
|
703
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
704
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
705
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
706
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
707
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
708
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
709
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
710
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
711
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
712
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
713
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
714
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
715
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
716
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
717
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
718
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
719
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
720
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
721
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
722
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:11:41 +0100
|
|
729
|
-
Served asset /outdatedbrowser/lang/en.html - 304 Not Modified (1ms)
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
Started GET "/hello.html" for 127.0.0.1 at 2015-03-30 17:13:25 +0100
|
|
733
|
-
|
|
734
|
-
ActionController::RoutingError (No route matches [GET] "/hello.html"):
|
|
735
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
736
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
737
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
738
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
739
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
740
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
741
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
742
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
743
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
744
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
745
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
746
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
747
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
748
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
749
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
750
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
751
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
752
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
753
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
754
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
Started GET "/public/hello.html" for 127.0.0.1 at 2015-03-30 17:13:33 +0100
|
|
761
|
-
|
|
762
|
-
ActionController::RoutingError (No route matches [GET] "/public/hello.html"):
|
|
763
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
764
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
765
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
766
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
767
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
768
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
769
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
770
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
771
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
772
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
773
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
774
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
775
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
776
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
777
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
778
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
779
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
780
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
781
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
782
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
Started GET "/public/hello.html" for 127.0.0.1 at 2015-03-30 17:13:41 +0100
|
|
789
|
-
Connecting to database specified by database.yml
|
|
790
|
-
|
|
791
|
-
ActionController::RoutingError (No route matches [GET] "/public/hello.html"):
|
|
792
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
793
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
794
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
795
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
796
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
797
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
798
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
799
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
800
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
801
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
802
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
803
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
804
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
805
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
806
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
807
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
808
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
809
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
810
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
811
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:15:41 +0100
|
|
818
|
-
Processing by DummyController#index as HTML
|
|
819
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
820
|
-
Rendered dummy/index.html.erb within layouts/application (7.0ms)
|
|
821
|
-
Completed 200 OK in 43.4ms (Views: 43.0ms | ActiveRecord: 0.0ms)
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:15:41 +0100
|
|
825
|
-
Served asset /jquery.js - 304 Not Modified (6ms)
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:15:41 +0100
|
|
829
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:15:41 +0100
|
|
833
|
-
Served asset /application.css - 304 Not Modified (2ms)
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:15:41 +0100
|
|
837
|
-
Served asset /application.js - 304 Not Modified (3ms)
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:15:41 +0100
|
|
841
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:15:41 +0100
|
|
845
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:15:41 +0100
|
|
849
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 304 Not Modified (1ms)
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
Started GET "/assets/javascripts/outdatedbrowser/lang/" for 127.0.0.1 at 2015-03-30 17:15:41 +0100
|
|
853
|
-
Served asset /javascripts/outdatedbrowser/lang - 404 Not Found (1ms)
|
|
854
|
-
|
|
855
|
-
ActionController::RoutingError (No route matches [GET] "/assets/javascripts/outdatedbrowser/lang"):
|
|
856
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
857
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
858
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
859
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
860
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
861
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
862
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
863
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
864
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
865
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
866
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
867
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
868
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
869
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
870
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
871
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
872
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
873
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
874
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
875
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:19:53 +0100
|
|
882
|
-
Connecting to database specified by database.yml
|
|
883
|
-
Processing by DummyController#index as HTML
|
|
884
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.3ms)
|
|
885
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (1ms) (pid 10275)
|
|
886
|
-
Rendered dummy/index.html.erb within layouts/application (37.4ms)
|
|
887
|
-
Completed 200 OK in 48.9ms (Views: 48.6ms | ActiveRecord: 0.0ms)
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:19:54 +0100
|
|
891
|
-
Served asset /application.css - 304 Not Modified (6ms)
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:19:54 +0100
|
|
895
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:19:54 +0100
|
|
899
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:19:54 +0100
|
|
903
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:19:54 +0100
|
|
907
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:19:54 +0100
|
|
911
|
-
Served asset /application.js - 304 Not Modified (2ms)
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:19:54 +0100
|
|
915
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 304 Not Modified (0ms)
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
Started GET "/assets/javascripts/outdatedbrowser/lang/" for 127.0.0.1 at 2015-03-30 17:19:54 +0100
|
|
919
|
-
Served asset /javascripts/outdatedbrowser/lang - 404 Not Found (1ms)
|
|
920
|
-
|
|
921
|
-
ActionController::RoutingError (No route matches [GET] "/assets/javascripts/outdatedbrowser/lang"):
|
|
922
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
923
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
924
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
925
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
926
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
927
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
928
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
929
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
930
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
931
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
932
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
933
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
934
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
935
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
936
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
937
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
938
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
939
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
940
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
941
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:21:38 +0100
|
|
948
|
-
Served asset /outdatedbrowser/lang/en.html - 304 Not Modified (1ms)
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:22:08 +0100
|
|
952
|
-
Connecting to database specified by database.yml
|
|
953
|
-
Served asset /outdatedbrowser/lang/en.html - 304 Not Modified (3ms)
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:23:16 +0100
|
|
957
|
-
Processing by DummyController#index as HTML
|
|
958
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.3ms)
|
|
959
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (1ms) (pid 10457)
|
|
960
|
-
Rendered dummy/index.html.erb within layouts/application (12.6ms)
|
|
961
|
-
Completed 200 OK in 56.4ms (Views: 56.1ms | ActiveRecord: 0.0ms)
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:23:16 +0100
|
|
965
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:23:16 +0100
|
|
969
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:23:16 +0100
|
|
973
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:23:16 +0100
|
|
977
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:23:16 +0100
|
|
981
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:23:16 +0100
|
|
985
|
-
Served asset /application.js - 304 Not Modified (3ms)
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:23:16 +0100
|
|
989
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
Started GET "/assets/outdatedbrowser/lang/" for 127.0.0.1 at 2015-03-30 17:23:16 +0100
|
|
993
|
-
Served asset /outdatedbrowser/lang - 404 Not Found (1ms)
|
|
994
|
-
|
|
995
|
-
ActionController::RoutingError (No route matches [GET] "/assets/outdatedbrowser/lang"):
|
|
996
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
997
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
998
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
999
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1000
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1001
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
1002
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1003
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1004
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1005
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1006
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1007
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
1008
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
1009
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
1010
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1011
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1012
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1013
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1014
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1015
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:24:02 +0100
|
|
1022
|
-
Connecting to database specified by database.yml
|
|
1023
|
-
Processing by DummyController#index as HTML
|
|
1024
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
1025
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (1ms) (pid 10634)
|
|
1026
|
-
Rendered dummy/index.html.erb within layouts/application (10.0ms)
|
|
1027
|
-
Completed 200 OK in 20.5ms (Views: 20.2ms | ActiveRecord: 0.0ms)
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:24:02 +0100
|
|
1031
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (5ms)
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:24:02 +0100
|
|
1035
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:02 +0100
|
|
1039
|
-
Served asset /application.js - 304 Not Modified (3ms)
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:02 +0100
|
|
1043
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:02 +0100
|
|
1047
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:02 +0100
|
|
1051
|
-
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:02 +0100
|
|
1055
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
Started GET "/lang/en.html" for 127.0.0.1 at 2015-03-30 17:24:02 +0100
|
|
1059
|
-
|
|
1060
|
-
ActionController::RoutingError (No route matches [GET] "/lang/en.html"):
|
|
1061
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1062
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1063
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1064
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1065
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1066
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
1067
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1068
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1069
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1070
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1071
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1072
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
1073
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
1074
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
1075
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1076
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1077
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1078
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1079
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1080
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:24:34 +0100
|
|
1087
|
-
Connecting to database specified by database.yml
|
|
1088
|
-
Processing by DummyController#index as HTML
|
|
1089
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
1090
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (1ms) (pid 10776)
|
|
1091
|
-
Rendered dummy/index.html.erb within layouts/application (11.7ms)
|
|
1092
|
-
Completed 200 OK in 22.1ms (Views: 21.8ms | ActiveRecord: 0.0ms)
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:24:34 +0100
|
|
1096
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (7ms)
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:24:34 +0100
|
|
1100
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:34 +0100
|
|
1104
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:34 +0100
|
|
1108
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:34 +0100
|
|
1112
|
-
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:34 +0100
|
|
1116
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:24:34 +0100
|
|
1120
|
-
Served asset /application.js - 304 Not Modified (3ms)
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
Started GET "/lang/en.html" for 127.0.0.1 at 2015-03-30 17:24:34 +0100
|
|
1124
|
-
|
|
1125
|
-
ActionController::RoutingError (No route matches [GET] "/lang/en.html"):
|
|
1126
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1127
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1128
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1129
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1130
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1131
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
1132
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1133
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1134
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1135
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1136
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1137
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
1138
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
1139
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
1140
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1141
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1142
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1143
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1144
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1145
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:25:45 +0100
|
|
1152
|
-
Processing by DummyController#index as HTML
|
|
1153
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.0ms)
|
|
1154
|
-
Rendered dummy/index.html.erb within layouts/application (1.0ms)
|
|
1155
|
-
Completed 200 OK in 3.6ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:25:45 +0100
|
|
1159
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (0ms)
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:25:45 +0100
|
|
1163
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:25:45 +0100
|
|
1167
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (0ms)
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:25:45 +0100
|
|
1171
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:25:45 +0100
|
|
1175
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:25:45 +0100
|
|
1179
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:25:45 +0100
|
|
1183
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 304 Not Modified (0ms)
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
Started GET "/lang/en.html" for 127.0.0.1 at 2015-03-30 17:25:45 +0100
|
|
1187
|
-
|
|
1188
|
-
ActionController::RoutingError (No route matches [GET] "/lang/en.html"):
|
|
1189
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1190
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1191
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1192
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1193
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1194
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
1195
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1196
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1197
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1198
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1199
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1200
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
1201
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
1202
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
1203
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1204
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1205
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1206
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1207
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1208
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:26:16 +0100
|
|
1215
|
-
Connecting to database specified by database.yml
|
|
1216
|
-
Processing by DummyController#index as HTML
|
|
1217
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
1218
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 10931)
|
|
1219
|
-
Rendered dummy/index.html.erb within layouts/application (10.0ms)
|
|
1220
|
-
Completed 200 OK in 22.3ms (Views: 21.9ms | ActiveRecord: 0.0ms)
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:26:16 +0100
|
|
1224
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:26:16 +0100
|
|
1228
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:26:16 +0100
|
|
1232
|
-
Served asset /application.js - 304 Not Modified (4ms)
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:26:16 +0100
|
|
1236
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:26:16 +0100
|
|
1240
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:26:16 +0100
|
|
1244
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:26:16 +0100
|
|
1248
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
Started GET "/lang/en.html" for 127.0.0.1 at 2015-03-30 17:26:16 +0100
|
|
1252
|
-
|
|
1253
|
-
ActionController::RoutingError (No route matches [GET] "/lang/en.html"):
|
|
1254
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1255
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1256
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1257
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1258
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1259
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
1260
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1261
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1262
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1263
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1264
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1265
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
1266
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
1267
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
1268
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1269
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1270
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1271
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1272
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1273
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:27:05 +0100
|
|
1280
|
-
Connecting to database specified by database.yml
|
|
1281
|
-
Processing by DummyController#index as HTML
|
|
1282
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
1283
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 11041)
|
|
1284
|
-
Rendered dummy/index.html.erb within layouts/application (11.5ms)
|
|
1285
|
-
Completed 200 OK in 24.0ms (Views: 23.6ms | ActiveRecord: 0.0ms)
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:27:05 +0100
|
|
1289
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (2ms)
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:05 +0100
|
|
1293
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:05 +0100
|
|
1297
|
-
Served asset /application.js - 304 Not Modified (3ms)
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:05 +0100
|
|
1301
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:27:05 +0100
|
|
1305
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:05 +0100
|
|
1309
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:05 +0100
|
|
1313
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
Started GET "/assets/javascripts/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:27:05 +0100
|
|
1317
|
-
Served asset /javascripts/outdatedbrowser/lang/en.html - 404 Not Found (1ms)
|
|
1318
|
-
|
|
1319
|
-
ActionController::RoutingError (No route matches [GET] "/assets/javascripts/outdatedbrowser/lang/en.html"):
|
|
1320
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1321
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1322
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1323
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1324
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1325
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
1326
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1327
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1328
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1329
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1330
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1331
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
1332
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
1333
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
1334
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1335
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1336
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1337
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1338
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1339
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:27:23 +0100
|
|
1346
|
-
Served asset /outdatedbrowser/lang/en.html - 304 Not Modified (25ms)
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:27:39 +0100
|
|
1350
|
-
Connecting to database specified by database.yml
|
|
1351
|
-
Processing by DummyController#index as HTML
|
|
1352
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.4ms)
|
|
1353
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (1ms) (pid 11139)
|
|
1354
|
-
Rendered dummy/index.html.erb within layouts/application (14.1ms)
|
|
1355
|
-
Completed 200 OK in 26.8ms (Views: 26.4ms | ActiveRecord: 0.0ms)
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:27:39 +0100
|
|
1359
|
-
Served asset /application.css - 304 Not Modified (4ms)
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:39 +0100
|
|
1363
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:39 +0100
|
|
1367
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:27:39 +0100
|
|
1371
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:39 +0100
|
|
1375
|
-
Served asset /application.js - 304 Not Modified (2ms)
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:39 +0100
|
|
1379
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:27:39 +0100
|
|
1383
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (0ms)
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:27:39 +0100
|
|
1387
|
-
Served asset /outdatedbrowser/lang/en.html - 304 Not Modified (1ms)
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:28:09 +0100
|
|
1391
|
-
Connecting to database specified by database.yml
|
|
1392
|
-
Processing by DummyController#index as HTML
|
|
1393
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.3ms)
|
|
1394
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 11229)
|
|
1395
|
-
Rendered dummy/index.html.erb within layouts/application (12.4ms)
|
|
1396
|
-
Completed 200 OK in 24.6ms (Views: 24.2ms | ActiveRecord: 0.0ms)
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:28:09 +0100
|
|
1400
|
-
Served asset /application.css - 304 Not Modified (2ms)
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:28:09 +0100
|
|
1404
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (3ms)
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:09 +0100
|
|
1408
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:09 +0100
|
|
1412
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:09 +0100
|
|
1416
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:09 +0100
|
|
1420
|
-
Served asset /application.js - 304 Not Modified (2ms)
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:09 +0100
|
|
1424
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
Started GET "/assets/outdatedbrowser/lang/" for 127.0.0.1 at 2015-03-30 17:28:09 +0100
|
|
1428
|
-
Served asset /outdatedbrowser/lang - 404 Not Found (1ms)
|
|
1429
|
-
|
|
1430
|
-
ActionController::RoutingError (No route matches [GET] "/assets/outdatedbrowser/lang"):
|
|
1431
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
1432
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
1433
|
-
railties (3.2.21) lib/rails/rack/logger.rb:32:in `call_app'
|
|
1434
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `block in call'
|
|
1435
|
-
activesupport (3.2.21) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
1436
|
-
railties (3.2.21) lib/rails/rack/logger.rb:16:in `call'
|
|
1437
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
1438
|
-
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
1439
|
-
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
1440
|
-
activesupport (3.2.21) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
1441
|
-
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
1442
|
-
actionpack (3.2.21) lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
1443
|
-
railties (3.2.21) lib/rails/engine.rb:484:in `call'
|
|
1444
|
-
railties (3.2.21) lib/rails/application.rb:231:in `call'
|
|
1445
|
-
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
1446
|
-
railties (3.2.21) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
1447
|
-
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
1448
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1449
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1450
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:28:55 +0100
|
|
1457
|
-
Connecting to database specified by database.yml
|
|
1458
|
-
Processing by DummyController#index as HTML
|
|
1459
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
1460
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 11332)
|
|
1461
|
-
Rendered dummy/index.html.erb within layouts/application (9.4ms)
|
|
1462
|
-
Completed 200 OK in 19.7ms (Views: 19.4ms | ActiveRecord: 0.0ms)
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:28:55 +0100
|
|
1466
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:55 +0100
|
|
1470
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:55 +0100
|
|
1474
|
-
Served asset /jquery.js - 304 Not Modified (3ms)
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:55 +0100
|
|
1478
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:55 +0100
|
|
1482
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:28:55 +0100
|
|
1486
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:28:55 +0100
|
|
1490
|
-
Served asset /application.js - 304 Not Modified (3ms)
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:29:14 +0100
|
|
1494
|
-
Connecting to database specified by database.yml
|
|
1495
|
-
Processing by DummyController#index as HTML
|
|
1496
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
1497
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (1ms) (pid 11415)
|
|
1498
|
-
Rendered dummy/index.html.erb within layouts/application (12.1ms)
|
|
1499
|
-
Completed 200 OK in 24.0ms (Views: 23.7ms | ActiveRecord: 0.0ms)
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:29:15 +0100
|
|
1503
|
-
Served asset /application.css - 304 Not Modified (7ms)
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:29:15 +0100
|
|
1507
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:29:15 +0100
|
|
1511
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (2ms)
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:29:15 +0100
|
|
1515
|
-
Served asset /application.js - 304 Not Modified (2ms)
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:29:15 +0100
|
|
1519
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:29:15 +0100
|
|
1523
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:29:15 +0100
|
|
1527
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js" for 127.0.0.1 at 2015-03-30 17:29:45 +0100
|
|
1531
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (0ms)
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:30:15 +0100
|
|
1535
|
-
Connecting to database specified by database.yml
|
|
1536
|
-
Processing by DummyController#index as HTML
|
|
1537
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.3ms)
|
|
1538
|
-
Rendered dummy/index.html.erb within layouts/application (32.9ms)
|
|
1539
|
-
Completed 500 Internal Server Error in 36.6ms
|
|
1540
|
-
|
|
1541
|
-
ActionView::Template::Error (/Users/lu/code/outdatedbrowser_rails/app/assets/javascripts/outdatedbrowser/require_outdatedbrowser.js.erb:21: syntax error, unexpected $undefined
|
|
1542
|
-
...erbout.concat(( path_to_asset \"outdatedbrowser/lang/#{I18n....
|
|
1543
|
-
... ^
|
|
1544
|
-
/Users/lu/code/outdatedbrowser_rails/app/assets/javascripts/outdatedbrowser/require_outdatedbrowser.js.erb:21: syntax error, unexpected $undefined, expecting ')'
|
|
1545
|
-
...ml\" ).to_s); _erbout.concat "\"\n"
|
|
1546
|
-
... ^
|
|
1547
|
-
/Users/lu/code/outdatedbrowser_rails/app/assets/javascripts/outdatedbrowser/require_outdatedbrowser.js.erb:26: syntax error, unexpected keyword_ensure, expecting ')'
|
|
1548
|
-
/Users/lu/code/outdatedbrowser_rails/app/assets/javascripts/outdatedbrowser/require_outdatedbrowser.js.erb:28: syntax error, unexpected keyword_end, expecting ')'
|
|
1549
|
-
(in /Users/lu/code/outdatedbrowser_rails/app/assets/javascripts/outdatedbrowser/require_outdatedbrowser.js.erb)):
|
|
1550
|
-
1: <%= render 'outdatedbrowser/outdatedbrowser' %>
|
|
1551
|
-
2:
|
|
1552
|
-
3: <%= javascript_include_tag 'outdatedbrowser/require_outdatedbrowser' %>
|
|
1553
|
-
app/views/dummy/index.html.erb:3:in `_app_views_dummy_index_html_erb__2970198692580757010_70314000712100'
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
|
1557
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
|
1558
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:30:44 +0100
|
|
1562
|
-
Connecting to database specified by database.yml
|
|
1563
|
-
Processing by DummyController#index as HTML
|
|
1564
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
1565
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 11627)
|
|
1566
|
-
Rendered dummy/index.html.erb within layouts/application (9.5ms)
|
|
1567
|
-
Completed 200 OK in 43.8ms (Views: 43.5ms | ActiveRecord: 0.0ms)
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:30:44 +0100
|
|
1571
|
-
Served asset /application.css - 304 Not Modified (6ms)
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:30:44 +0100
|
|
1575
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:30:44 +0100
|
|
1579
|
-
Served asset /jquery.js - 304 Not Modified (6ms)
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:30:44 +0100
|
|
1583
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:30:44 +0100
|
|
1587
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:30:44 +0100
|
|
1591
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:30:44 +0100
|
|
1595
|
-
Served asset /application.js - 304 Not Modified (4ms)
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:30:44 +0100
|
|
1599
|
-
Served asset /outdatedbrowser/lang/en.html - 304 Not Modified (2ms)
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:33:38 +0100
|
|
1603
|
-
Served asset /outdatedbrowser/lang/en.html - 304 Not Modified (0ms)
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
Started GET "/assets/outdatedbrowser/lang/fr.html" for 127.0.0.1 at 2015-03-30 17:33:41 +0100
|
|
1607
|
-
Served asset /outdatedbrowser/lang/fr.html - 200 OK (2ms)
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
Started GET "/assets/outdatedbrowser/lang/fr.html" for 127.0.0.1 at 2015-03-30 17:35:14 +0100
|
|
1611
|
-
Served asset /outdatedbrowser/lang/fr.html - 304 Not Modified (0ms)
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:35:32 +0100
|
|
1615
|
-
Served asset /outdatedbrowser/lang/en.html - 304 Not Modified (0ms)
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js" for 127.0.0.1 at 2015-03-30 17:35:38 +0100
|
|
1619
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 11627)
|
|
1620
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (5ms)
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:41:15 +0100
|
|
1624
|
-
Processing by DummyController#index as HTML
|
|
1625
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.0ms)
|
|
1626
|
-
Rendered dummy/index.html.erb within layouts/application (1.5ms)
|
|
1627
|
-
Completed 200 OK in 8.2ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:41:15 +0100
|
|
1631
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:41:15 +0100
|
|
1635
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:41:15 +0100
|
|
1639
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (0ms)
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:41:15 +0100
|
|
1643
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:41:15 +0100
|
|
1647
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (0ms)
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:41:15 +0100
|
|
1651
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:41:15 +0100
|
|
1655
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 304 Not Modified (1ms)
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:41:15 +0100
|
|
1659
|
-
Served asset /outdatedbrowser/lang/en.html - 304 Not Modified (0ms)
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:43:02 +0100
|
|
1663
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:43:02 +0100
|
|
1667
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (0ms)
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:47:19 +0100
|
|
1671
|
-
Connecting to database specified by database.yml
|
|
1672
|
-
Processing by DummyController#index as HTML
|
|
1673
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.3ms)
|
|
1674
|
-
Rendered dummy/index.html.erb within layouts/application (34.0ms)
|
|
1675
|
-
Completed 200 OK in 58.0ms (Views: 57.7ms | ActiveRecord: 0.0ms)
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:47:20 +0100
|
|
1679
|
-
Served asset /application.css - 200 OK (2ms)
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:47:20 +0100
|
|
1683
|
-
Served asset /jquery_ujs.js - 200 OK (1ms)
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:47:20 +0100
|
|
1687
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 200 OK (1ms)
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:47:20 +0100
|
|
1691
|
-
Served asset /jquery.js - 200 OK (1ms)
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:47:20 +0100
|
|
1695
|
-
Served asset /application.js - 200 OK (5ms)
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:47:20 +0100
|
|
1699
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:47:20 +0100
|
|
1703
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (1ms)
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:47:20 +0100
|
|
1707
|
-
Served asset /outdatedbrowser/lang/en.html - 200 OK (1ms)
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:48:26 +0100
|
|
1711
|
-
Processing by DummyController#index as HTML
|
|
1712
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.0ms)
|
|
1713
|
-
Rendered dummy/index.html.erb within layouts/application (1.2ms)
|
|
1714
|
-
Completed 200 OK in 3.8ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:26 +0100
|
|
1718
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (0ms)
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:26 +0100
|
|
1722
|
-
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:26 +0100
|
|
1726
|
-
Served asset /jquery.js - 200 OK (0ms)
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:48:26 +0100
|
|
1730
|
-
Served asset /application.css - 200 OK (0ms)
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:26 +0100
|
|
1734
|
-
Served asset /application.js - 200 OK (0ms)
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:48:26 +0100
|
|
1738
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 200 OK (0ms)
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:26 +0100
|
|
1742
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (0ms)
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:48:26 +0100
|
|
1746
|
-
Served asset /outdatedbrowser/lang/en.html - 200 OK (0ms)
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:48:56 +0100
|
|
1750
|
-
Processing by DummyController#index as HTML
|
|
1751
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.0ms)
|
|
1752
|
-
Rendered dummy/index.html.erb within layouts/application (0.9ms)
|
|
1753
|
-
Completed 200 OK in 3.0ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:48:56 +0100
|
|
1757
|
-
Served asset /application.css - 200 OK (0ms)
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:48:56 +0100
|
|
1761
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 200 OK (0ms)
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:56 +0100
|
|
1765
|
-
Served asset /jquery.js - 200 OK (0ms)
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:56 +0100
|
|
1769
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (0ms)
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:56 +0100
|
|
1773
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (0ms)
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:56 +0100
|
|
1777
|
-
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:48:56 +0100
|
|
1781
|
-
Served asset /application.js - 200 OK (0ms)
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:48:56 +0100
|
|
1785
|
-
Served asset /outdatedbrowser/lang/en.html - 200 OK (0ms)
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
Started GET "/assets/outdatedbrowser/lang/de.html" for 127.0.0.1 at 2015-03-30 17:49:06 +0100
|
|
1789
|
-
Served asset /outdatedbrowser/lang/de.html - 200 OK (4ms)
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js" for 127.0.0.1 at 2015-03-30 17:49:15 +0100
|
|
1793
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (0ms)
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js" for 127.0.0.1 at 2015-03-30 17:50:02 +0100
|
|
1797
|
-
Connecting to database specified by database.yml
|
|
1798
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (4ms)
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js" for 127.0.0.1 at 2015-03-30 17:50:10 +0100
|
|
1802
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 304 Not Modified (0ms)
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
Started GET "/assets/outdatedbrowser/lang/de.html" for 127.0.0.1 at 2015-03-30 17:50:14 +0100
|
|
1806
|
-
Served asset /outdatedbrowser/lang/de.html - 200 OK (1ms)
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:50:15 +0100
|
|
1810
|
-
Processing by DummyController#index as HTML
|
|
1811
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
1812
|
-
Rendered dummy/index.html.erb within layouts/application (3.5ms)
|
|
1813
|
-
Completed 200 OK in 35.5ms (Views: 35.3ms | ActiveRecord: 0.0ms)
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:50:16 +0100
|
|
1817
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 200 OK (3ms)
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:16 +0100
|
|
1821
|
-
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:16 +0100
|
|
1825
|
-
Served asset /jquery.js - 200 OK (3ms)
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:50:16 +0100
|
|
1829
|
-
Served asset /application.css - 200 OK (2ms)
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:16 +0100
|
|
1833
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (1ms)
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:16 +0100
|
|
1837
|
-
Served asset /application.js - 200 OK (30ms)
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:16 +0100
|
|
1841
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:50:16 +0100
|
|
1845
|
-
Served asset /outdatedbrowser/lang/en.html - 200 OK (1ms)
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:50:17 +0100
|
|
1849
|
-
Processing by DummyController#index as HTML
|
|
1850
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.0ms)
|
|
1851
|
-
Rendered dummy/index.html.erb within layouts/application (0.9ms)
|
|
1852
|
-
Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:50:17 +0100
|
|
1856
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 200 OK (0ms)
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:17 +0100
|
|
1860
|
-
Served asset /jquery.js - 200 OK (0ms)
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:50:17 +0100
|
|
1864
|
-
Served asset /application.css - 200 OK (0ms)
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:17 +0100
|
|
1868
|
-
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:17 +0100
|
|
1872
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (0ms)
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:17 +0100
|
|
1876
|
-
Served asset /application.js - 200 OK (0ms)
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:50:17 +0100
|
|
1880
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (0ms)
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
Started GET "/assets/outdatedbrowser/lang/en.html" for 127.0.0.1 at 2015-03-30 17:50:17 +0100
|
|
1884
|
-
Served asset /outdatedbrowser/lang/en.html - 200 OK (0ms)
|
|
1885
|
-
Connecting to database specified by database.yml
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:58:42 +0100
|
|
1889
|
-
Connecting to database specified by database.yml
|
|
1890
|
-
Processing by DummyController#index as HTML
|
|
1891
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.2ms)
|
|
1892
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 14234)
|
|
1893
|
-
Rendered dummy/index.html.erb within layouts/application (10.7ms)
|
|
1894
|
-
Completed 200 OK in 34.2ms (Views: 33.3ms | ActiveRecord: 0.0ms)
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:58:43 +0100
|
|
1898
|
-
Processing by DummyController#index as HTML
|
|
1899
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.0ms)
|
|
1900
|
-
Rendered dummy/index.html.erb within layouts/application (0.9ms)
|
|
1901
|
-
Completed 200 OK in 3.4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 17:58:43 +0100
|
|
1905
|
-
Served asset /jquery_ujs.js - 304 Not Modified (7ms)
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:58:43 +0100
|
|
1909
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:58:43 +0100
|
|
1913
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 17:58:43 +0100
|
|
1917
|
-
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:58:43 +0100
|
|
1921
|
-
Served asset /application.css - 304 Not Modified (2ms)
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 17:58:43 +0100
|
|
1925
|
-
Served asset /application.js - 304 Not Modified (4ms)
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 17:58:43 +0100
|
|
1929
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 17:58:46 +0100
|
|
1933
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (0ms)
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 17:58:46 +0100
|
|
1937
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:59:15 +0100
|
|
1941
|
-
Connecting to database specified by database.yml
|
|
1942
|
-
Processing by DummyController#index as HTML
|
|
1943
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (3.1ms)
|
|
1944
|
-
Rendered dummy/index.html.erb within layouts/application (5.4ms)
|
|
1945
|
-
Completed 500 Internal Server Error in 9.0ms
|
|
1946
|
-
|
|
1947
|
-
ActionView::Template::Error (Missing partial lang/de with {:locale=>[:de], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
|
1948
|
-
* "/Users/lu/code/outdatedbrowser_rails/spec/dummy/app/views"
|
|
1949
|
-
* "/Users/lu/code/outdatedbrowser_rails/app/views"
|
|
1950
|
-
):
|
|
1951
|
-
1: <div id="outdated">
|
|
1952
|
-
2: <%= render "lang/#{I18n.locale}" %>
|
|
1953
|
-
3: </div>
|
|
1954
|
-
app/views/dummy/index.html.erb:1:in `_app_views_dummy_index_html_erb___216303674777563613_70183966077260'
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
|
1958
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
|
1959
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 17:59:38 +0100
|
|
1963
|
-
Connecting to database specified by database.yml
|
|
1964
|
-
Processing by DummyController#index as HTML
|
|
1965
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (1.8ms)
|
|
1966
|
-
Rendered dummy/index.html.erb within layouts/application (26.9ms)
|
|
1967
|
-
Completed 500 Internal Server Error in 31.9ms
|
|
1968
|
-
|
|
1969
|
-
ActionView::Template::Error (Missing partial ./lang/de with {:locale=>[:de], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
|
1970
|
-
* "/Users/lu/code/outdatedbrowser_rails/spec/dummy/app/views"
|
|
1971
|
-
* "/Users/lu/code/outdatedbrowser_rails/app/views"
|
|
1972
|
-
):
|
|
1973
|
-
1: <div id="outdated">
|
|
1974
|
-
2: <%= render "./lang/#{I18n.locale}" %>
|
|
1975
|
-
3: </div>
|
|
1976
|
-
app/views/dummy/index.html.erb:1:in `_app_views_dummy_index_html_erb__621297788807993215_70324407304460'
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
|
1980
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
|
1981
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.7ms)
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 18:00:46 +0100
|
|
1985
|
-
Connecting to database specified by database.yml
|
|
1986
|
-
Processing by DummyController#index as HTML
|
|
1987
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (1.8ms)
|
|
1988
|
-
Rendered dummy/index.html.erb within layouts/application (4.2ms)
|
|
1989
|
-
Completed 500 Internal Server Error in 8.6ms
|
|
1990
|
-
|
|
1991
|
-
ActionView::Template::Error (Missing partial lang/de with {:locale=>[:de], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
|
1992
|
-
* "/Users/lu/code/outdatedbrowser_rails/spec/dummy/app/views"
|
|
1993
|
-
* "/Users/lu/code/outdatedbrowser_rails/app/views"
|
|
1994
|
-
):
|
|
1995
|
-
1: <div id="outdated">
|
|
1996
|
-
2: <%= render partial: "lang/#{I18n.locale}" %>
|
|
1997
|
-
3: </div>
|
|
1998
|
-
app/views/dummy/index.html.erb:1:in `_app_views_dummy_index_html_erb___2919175842720233516_70357280559560'
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
|
2002
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
|
2003
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.4ms)
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 18:01:11 +0100
|
|
2007
|
-
Connecting to database specified by database.yml
|
|
2008
|
-
Processing by DummyController#index as HTML
|
|
2009
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (2.1ms)
|
|
2010
|
-
Rendered dummy/index.html.erb within layouts/application (5.2ms)
|
|
2011
|
-
Completed 500 Internal Server Error in 9.4ms
|
|
2012
|
-
|
|
2013
|
-
ActionView::Template::Error (Missing partial outdatedbrowser/lang/de with {:locale=>[:de], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
|
2014
|
-
* "/Users/lu/code/outdatedbrowser_rails/spec/dummy/app/views"
|
|
2015
|
-
* "/Users/lu/code/outdatedbrowser_rails/app/views"
|
|
2016
|
-
):
|
|
2017
|
-
1: <div id="outdated">
|
|
2018
|
-
2: <%= render partial: "outdatedbrowser/lang/#{I18n.locale}" %>
|
|
2019
|
-
3: </div>
|
|
2020
|
-
app/views/dummy/index.html.erb:1:in `_app_views_dummy_index_html_erb__2870853491571153829_70289654821420'
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
|
2024
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
|
2025
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.5ms)
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 18:02:53 +0100
|
|
2029
|
-
Connecting to database specified by database.yml
|
|
2030
|
-
Processing by DummyController#index as HTML
|
|
2031
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/lang/de.html (0.3ms)
|
|
2032
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (1.6ms)
|
|
2033
|
-
Rendered dummy/index.html.erb within layouts/application (10.4ms)
|
|
2034
|
-
Completed 200 OK in 35.2ms (Views: 34.8ms | ActiveRecord: 0.0ms)
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 18:02:53 +0100
|
|
2038
|
-
Served asset /application.css - 200 OK (24ms)
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 18:02:53 +0100
|
|
2042
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 200 OK (1ms)
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 18:02:53 +0100
|
|
2046
|
-
Served asset /jquery.js - 200 OK (1ms)
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 18:02:53 +0100
|
|
2050
|
-
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 18:02:53 +0100
|
|
2054
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 18:02:53 +0100
|
|
2058
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (1ms)
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 18:02:53 +0100
|
|
2062
|
-
Served asset /application.js - 200 OK (2ms)
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 18:41:37 +0100
|
|
2066
|
-
Processing by DummyController#index as HTML
|
|
2067
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/lang/de.html (0.0ms)
|
|
2068
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (0.5ms)
|
|
2069
|
-
Rendered dummy/index.html.erb within layouts/application (1.5ms)
|
|
2070
|
-
Completed 200 OK in 5.7ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 18:41:37 +0100
|
|
2074
|
-
Served asset /application.css - 200 OK (0ms)
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 18:41:37 +0100
|
|
2078
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 200 OK (0ms)
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 18:41:37 +0100
|
|
2082
|
-
Served asset /jquery.js - 200 OK (0ms)
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 18:41:37 +0100
|
|
2086
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (0ms)
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 18:41:37 +0100
|
|
2090
|
-
Served asset /application.js - 200 OK (0ms)
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 18:41:37 +0100
|
|
2094
|
-
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 18:41:37 +0100
|
|
2098
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (0ms)
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 18:42:21 +0100
|
|
2102
|
-
Connecting to database specified by database.yml
|
|
2103
|
-
Processing by DummyController#index as HTML
|
|
2104
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/lang/nl.html (0.3ms)
|
|
2105
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (1.4ms)
|
|
2106
|
-
Rendered dummy/index.html.erb within layouts/application (11.2ms)
|
|
2107
|
-
Completed 200 OK in 37.4ms (Views: 37.0ms | ActiveRecord: 0.0ms)
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 18:42:21 +0100
|
|
2111
|
-
Served asset /application.css - 200 OK (25ms)
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 18:42:21 +0100
|
|
2115
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 200 OK (1ms)
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 18:42:21 +0100
|
|
2119
|
-
Served asset /jquery.js - 200 OK (1ms)
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 18:42:21 +0100
|
|
2123
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 200 OK (1ms)
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 18:42:21 +0100
|
|
2127
|
-
Served asset /application.js - 200 OK (3ms)
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 18:42:21 +0100
|
|
2131
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 200 OK (1ms)
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 18:42:21 +0100
|
|
2135
|
-
Served asset /jquery_ujs.js - 200 OK (1ms)
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 19:27:52 +0100
|
|
2139
|
-
Connecting to database specified by database.yml
|
|
2140
|
-
Processing by DummyController#index as HTML
|
|
2141
|
-
ERROR: compiling ___sers_lu_code_outdatedbrowser_rails_app_views_outdatedbrowser__outdatedbrowser_html_erb__2738677638233223154_70307563506200 RAISED /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb:3: syntax error, unexpected keyword_rescue, expecting ')'
|
|
2142
|
-
rescue render file: "outdatedbrowse...
|
|
2143
|
-
^
|
|
2144
|
-
Function body: def ___sers_lu_code_outdatedbrowser_rails_app_views_outdatedbrowser__outdatedbrowser_html_erb__2738677638233223154_70307563506200(local_assigns, output_buffer)
|
|
2145
|
-
_old_virtual_path, @virtual_path = @virtual_path, "outdatedbrowser/_outdatedbrowser";_old_output_buffer = @output_buffer;outdatedbrowser = local_assigns[:outdatedbrowser];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.safe_concat('<div id="outdated">
|
|
2146
|
-
');@output_buffer.append= ( render file: "outdatedbrowser/lang/#{I18n.locale}"
|
|
2147
|
-
rescue render file: "outdatedbrowser/lang/en" );@output_buffer.safe_concat('
|
|
2148
|
-
');@output_buffer.safe_concat('</div>
|
|
2149
|
-
');@output_buffer.to_s
|
|
2150
|
-
ensure
|
|
2151
|
-
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
|
2152
|
-
end
|
|
2153
|
-
|
|
2154
|
-
Backtrace: /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/template.rb:297:in `module_eval'
|
|
2155
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/template.rb:297:in `compile'
|
|
2156
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/template.rb:244:in `block in compile!'
|
|
2157
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/template.rb:232:in `synchronize'
|
|
2158
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/template.rb:232:in `compile!'
|
|
2159
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/template.rb:144:in `block in render'
|
|
2160
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications.rb:125:in `instrument'
|
|
2161
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/template.rb:143:in `render'
|
|
2162
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/partial_renderer.rb:265:in `render_partial'
|
|
2163
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/partial_renderer.rb:238:in `block in render'
|
|
2164
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
|
2165
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications.rb:123:in `block in instrument'
|
|
2166
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
2167
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications.rb:123:in `instrument'
|
|
2168
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
|
2169
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/partial_renderer.rb:237:in `render'
|
|
2170
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
|
2171
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/helpers/rendering_helper.rb:27:in `render'
|
|
2172
|
-
/Users/lu/code/outdatedbrowser_rails/spec/dummy/app/views/dummy/index.html.erb:1:in `_app_views_dummy_index_html_erb___4266080069705559779_70307567558840'
|
|
2173
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/template.rb:145:in `block in render'
|
|
2174
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications.rb:125:in `instrument'
|
|
2175
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/template.rb:143:in `render'
|
|
2176
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
|
2177
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
|
2178
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications.rb:123:in `block in instrument'
|
|
2179
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
2180
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications.rb:123:in `instrument'
|
|
2181
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
|
2182
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
|
2183
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
|
2184
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
|
2185
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
|
2186
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
2187
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_view/renderer/renderer.rb:17:in `render'
|
|
2188
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
|
2189
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
|
2190
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
|
2191
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
|
2192
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
|
2193
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/abstract_controller/rendering.rb:88:in `render'
|
|
2194
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/rendering.rb:16:in `render'
|
|
2195
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
|
2196
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
2197
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
2198
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
2199
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
|
2200
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
|
2201
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activerecord-3.2.21/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
2202
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
|
2203
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
2204
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
2205
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/abstract_controller/base.rb:167:in `process_action'
|
|
2206
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
2207
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
2208
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:414:in `_run__2840613032752369174__process_action__2404182801698248725__callbacks'
|
|
2209
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
2210
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
2211
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
2212
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
2213
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
2214
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
2215
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications.rb:123:in `block in instrument'
|
|
2216
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
2217
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/notifications.rb:123:in `instrument'
|
|
2218
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
2219
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
2220
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activerecord-3.2.21/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
2221
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/abstract_controller/base.rb:121:in `process'
|
|
2222
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/abstract_controller/rendering.rb:45:in `process'
|
|
2223
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal.rb:203:in `dispatch'
|
|
2224
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
2225
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_controller/metal.rb:246:in `block in action'
|
|
2226
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
2227
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
2228
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
2229
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
|
2230
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
|
2231
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
|
2232
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/routing/route_set.rb:608:in `call'
|
|
2233
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
2234
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/rack-1.4.5/lib/rack/etag.rb:23:in `call'
|
|
2235
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/rack-1.4.5/lib/rack/conditionalget.rb:25:in `call'
|
|
2236
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
2237
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
2238
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
2239
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:210:in `context'
|
|
2240
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/rack-1.4.5/lib/rack/session/abstract/id.rb:205:in `call'
|
|
2241
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
2242
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activerecord-3.2.21/lib/active_record/query_cache.rb:64:in `call'
|
|
2243
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activerecord-3.2.21/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
2244
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
2245
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:405:in `_run__994723548647784372__call__2511042583708057111__callbacks'
|
|
2246
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
2247
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
2248
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
2249
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
2250
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
2251
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
2252
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
2253
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
2254
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-3.2.21/lib/rails/rack/logger.rb:32:in `call_app'
|
|
2255
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-3.2.21/lib/rails/rack/logger.rb:16:in `block in call'
|
|
2256
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
2257
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-3.2.21/lib/rails/rack/logger.rb:16:in `call'
|
|
2258
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
2259
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/rack-1.4.5/lib/rack/methodoverride.rb:21:in `call'
|
|
2260
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/rack-1.4.5/lib/rack/runtime.rb:17:in `call'
|
|
2261
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/activesupport-3.2.21/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
2262
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/rack-1.4.5/lib/rack/lock.rb:15:in `call'
|
|
2263
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/static.rb:83:in `call'
|
|
2264
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-3.2.21/lib/rails/engine.rb:484:in `call'
|
|
2265
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-3.2.21/lib/rails/application.rb:231:in `call'
|
|
2266
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/rack-1.4.5/lib/rack/content_length.rb:14:in `call'
|
|
2267
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/railties-3.2.21/lib/rails/rack/log_tailer.rb:17:in `call'
|
|
2268
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/rack-1.4.5/lib/rack/handler/webrick.rb:59:in `service'
|
|
2269
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
2270
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
2271
|
-
/opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
2272
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (2.0ms)
|
|
2273
|
-
Rendered dummy/index.html.erb within layouts/application (6.8ms)
|
|
2274
|
-
Completed 500 Internal Server Error in 14.3ms
|
|
2275
|
-
|
|
2276
|
-
ActionView::Template::Error (/Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb:3: syntax error, unexpected keyword_rescue, expecting ')'
|
|
2277
|
-
rescue render file: "outdatedbrowse...
|
|
2278
|
-
^):
|
|
2279
|
-
1: <div id="outdated">
|
|
2280
|
-
2: <%= render file: "outdatedbrowser/lang/#{I18n.locale}"
|
|
2281
|
-
3: rescue render file: "outdatedbrowser/lang/en" %>
|
|
2282
|
-
4: </div>
|
|
2283
|
-
app/views/dummy/index.html.erb:1:in `_app_views_dummy_index_html_erb___4266080069705559779_70307567558840'
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
|
2287
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
|
2288
|
-
Rendered /opt/boxen/rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/actionpack-3.2.21/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
Started GET "/" for 127.0.0.1 at 2015-03-30 19:28:04 +0100
|
|
2292
|
-
Processing by DummyController#index as HTML
|
|
2293
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/lang/en.html (0.3ms)
|
|
2294
|
-
Rendered /Users/lu/code/outdatedbrowser_rails/app/views/outdatedbrowser/_outdatedbrowser.html.erb (3.3ms)
|
|
2295
|
-
Compiled outdatedbrowser/require_outdatedbrowser.js (0ms) (pid 21589)
|
|
2296
|
-
Rendered dummy/index.html.erb within layouts/application (10.7ms)
|
|
2297
|
-
Compiled outdatedbrowser/outdatedBrowser.css (0ms) (pid 21589)
|
|
2298
|
-
Compiled outdatedbrowser/outdatedBrowser.js (0ms) (pid 21589)
|
|
2299
|
-
Completed 200 OK in 27.0ms (Views: 26.8ms | ActiveRecord: 0.0ms)
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 19:28:05 +0100
|
|
2303
|
-
Served asset /application.css - 304 Not Modified (5ms)
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 19:28:05 +0100
|
|
2307
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (1ms)
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-30 19:28:05 +0100
|
|
2311
|
-
Served asset /application.js - 304 Not Modified (28ms)
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-30 19:28:05 +0100
|
|
2315
|
-
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-03-30 19:28:05 +0100
|
|
2319
|
-
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.js?body=1" for 127.0.0.1 at 2015-03-30 19:28:05 +0100
|
|
2323
|
-
Served asset /outdatedbrowser/outdatedBrowser.js - 304 Not Modified (1ms)
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
Started GET "/assets/outdatedbrowser/require_outdatedbrowser.js?body=1" for 127.0.0.1 at 2015-03-30 19:28:05 +0100
|
|
2327
|
-
Served asset /outdatedbrowser/require_outdatedbrowser.js - 304 Not Modified (1ms)
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
Started GET "/assets/outdatedbrowser/outdatedBrowser.css?body=1" for 127.0.0.1 at 2015-03-30 19:28:09 +0100
|
|
2331
|
-
Served asset /outdatedbrowser/outdatedBrowser.css - 304 Not Modified (0ms)
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-30 19:28:09 +0100
|
|
2335
|
-
Served asset /application.css - 304 Not Modified (0ms)
|