missing_i18n 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +68 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/javascripts/missing_i18n/application.js +11 -0
  6. data/app/assets/stylesheets/missing_i18n/application.css.erb +36 -0
  7. data/app/controllers/missing_i18n/application_controller.rb +7 -0
  8. data/app/controllers/missing_i18n/locales_controller.rb +17 -0
  9. data/app/models/missing_i18n/locale.rb +90 -0
  10. data/app/views/layouts/missing_i18n/application.html.erb +14 -0
  11. data/app/views/missing_i18n/locales/_locale.html.erb +5 -0
  12. data/app/views/missing_i18n/locales/index.html.erb +19 -0
  13. data/app/views/missing_i18n/locales/show.html.erb +15 -0
  14. data/config/routes.rb +4 -0
  15. data/lib/missing_i18n/engine.rb +5 -0
  16. data/lib/missing_i18n/version.rb +3 -0
  17. data/lib/missing_i18n.rb +29 -0
  18. data/script/rails +8 -0
  19. data/test/dummy/README.rdoc +261 -0
  20. data/test/dummy/Rakefile +7 -0
  21. data/test/dummy/app/assets/javascripts/application.js +15 -0
  22. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  23. data/test/dummy/app/controllers/application_controller.rb +3 -0
  24. data/test/dummy/app/helpers/application_helper.rb +2 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +12 -0
  26. data/test/dummy/config/application.rb +61 -0
  27. data/test/dummy/config/boot.rb +10 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +37 -0
  31. data/test/dummy/config/environments/production.rb +67 -0
  32. data/test/dummy/config/environments/test.rb +37 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/inflections.rb +15 -0
  35. data/test/dummy/config/initializers/mime_types.rb +5 -0
  36. data/test/dummy/config/initializers/secret_token.rb +7 -0
  37. data/test/dummy/config/initializers/session_store.rb +8 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/test/dummy/config/locales/en.yml +6 -0
  40. data/test/dummy/config/locales/es.yml +9 -0
  41. data/test/dummy/config/routes.rb +4 -0
  42. data/test/dummy/config.ru +4 -0
  43. data/test/dummy/db/development.sqlite3 +0 -0
  44. data/test/dummy/log/development.log +3702 -0
  45. data/test/dummy/public/404.html +26 -0
  46. data/test/dummy/public/422.html +26 -0
  47. data/test/dummy/public/500.html +25 -0
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/dummy/script/rails +6 -0
  50. data/test/dummy/tmp/cache/assets/C37/460/sprockets%2F2c97f7629d838469e984005b45012f74 +0 -0
  51. data/test/dummy/tmp/cache/assets/C57/090/sprockets%2Ffb76e34f34542c751920190a976075c7 +0 -0
  52. data/test/dummy/tmp/cache/assets/C7A/AE0/sprockets%2F805bd3ef634444b405484a146381c6f2 +0 -0
  53. data/test/dummy/tmp/cache/assets/C85/6B0/sprockets%2F721d069a93d238f5396bf503b5b15594 +0 -0
  54. data/test/dummy/tmp/cache/assets/C8A/340/sprockets%2F7455c226fe9a93805641c9d1e38453a5 +0 -0
  55. data/test/dummy/tmp/cache/assets/C9A/670/sprockets%2F982543409941ce9c29dc44a78f4c0988 +0 -0
  56. data/test/dummy/tmp/cache/assets/CB3/D00/sprockets%2F00a9467f9e3685b6eb224e03379b28b2 +0 -0
  57. data/test/dummy/tmp/cache/assets/CE0/370/sprockets%2Fa39a8740f0b61611a6f9b9756fd9b211 +0 -0
  58. data/test/dummy/tmp/cache/assets/CE3/230/sprockets%2F218faa25364da35b59b68638b73ca567 +0 -0
  59. data/test/dummy/tmp/cache/assets/D0B/A40/sprockets%2F57f31167761f8b26bc3f1b0167bb4e3f +0 -0
  60. data/test/dummy/tmp/cache/assets/D14/CC0/sprockets%2F413b47ad449f6c649da1a76de9c52740 +0 -0
  61. data/test/dummy/tmp/cache/assets/D1A/BA0/sprockets%2F8f568f3083278618c50c82d1bbcf6dc5 +0 -0
  62. data/test/dummy/tmp/cache/assets/D20/D90/sprockets%2F7a9daf4472f16222b989f0f69c9820eb +0 -0
  63. data/test/dummy/tmp/cache/assets/D27/130/sprockets%2Fc3fee9098e52c52368f4eb9722ef9182 +0 -0
  64. data/test/dummy/tmp/cache/assets/D32/080/sprockets%2F8b1af3a2afe11e950164bec706f64191 +0 -0
  65. data/test/dummy/tmp/cache/assets/D3D/400/sprockets%2Ff3a0fc08891cc4e1e05f219c8827dd40 +0 -0
  66. data/test/dummy/tmp/cache/assets/D4A/250/sprockets%2F0ad7a77a58513a939a16f7b87fd742fc +0 -0
  67. data/test/dummy/tmp/cache/assets/D54/650/sprockets%2F95c28117b88ef818d27e1d2f9ca8bc58 +0 -0
  68. data/test/dummy/tmp/cache/assets/D64/6C0/sprockets%2Fe5bf1f16b921a3c2050657e8c3fcc51e +0 -0
  69. data/test/dummy/tmp/cache/assets/D74/6F0/sprockets%2Fd70538680abddce9109f2c6ef271ff07 +0 -0
  70. data/test/dummy/tmp/cache/assets/D76/F70/sprockets%2F46dfa9faaf2928d59b22da4442dd1957 +0 -0
  71. data/test/dummy/tmp/cache/assets/D86/640/sprockets%2F286d910145a2ea0cc8cda9acb442c06a +0 -0
  72. data/test/dummy/tmp/cache/assets/D8F/560/sprockets%2F057d1cb22221eecd76f281af2f6bd43c +0 -0
  73. data/test/dummy/tmp/cache/assets/DA2/EB0/sprockets%2Fcb0b147573bea528d5de16ce97c65a7f +0 -0
  74. data/test/dummy/tmp/cache/assets/DA5/7B0/sprockets%2F3cb24755d374c7f515eef2bfd548cde2 +0 -0
  75. data/test/dummy/tmp/cache/assets/DC9/9F0/sprockets%2Fb6cf7b756a0d77db1e530ad74072dbef +0 -0
  76. data/test/dummy/tmp/pids/server.pid +1 -0
  77. data/test/integration/navigation_test.rb +10 -0
  78. data/test/missing_i18n_test.rb +7 -0
  79. data/test/test_helper.rb +15 -0
  80. data/vendor/assets/images/glyphicons-halflings-white.png +0 -0
  81. data/vendor/assets/images/glyphicons-halflings.png +0 -0
  82. data/vendor/assets/javascripts/bootstrap.min.js +6 -0
  83. data/vendor/assets/javascripts/jquery-1.8.3.min.js +2 -0
  84. data/vendor/assets/stylesheets/bootstrap.min.css +9 -0
  85. metadata +217 -0
@@ -0,0 +1,3702 @@
1
+ Connecting to database specified by database.yml
2
+
3
+
4
+ Started GET "/" for 127.0.0.1 at 2013-05-07 19:48:50 +0200
5
+
6
+
7
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 19:48:50 +0200
8
+ Processing by MissingI18n::LocalesController#index as HTML
9
+ Completed 500 Internal Server Error in 3ms
10
+
11
+ NameError (uninitialized constant MissingI18n::LocalesController::Locale):
12
+ /Users/kikito/programming/rails/missing_i18n/app/controllers/missing_i18n/locales_controller.rb:4:in `index'
13
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
14
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
15
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
16
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
17
+ activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4194375526499327119__process_action__2648839914238230901__callbacks'
18
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
19
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
20
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
21
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
22
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
23
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
24
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
25
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
26
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
27
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
28
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
29
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
30
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
31
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
32
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
33
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
34
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
35
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
36
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
37
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
38
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
39
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
40
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
41
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
42
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
43
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
44
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
45
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
46
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
47
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
48
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
49
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
50
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
51
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
52
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
53
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
54
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
55
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
56
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
57
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
58
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
59
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
60
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2231339995025275879__call__502919333904674907__callbacks'
61
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
62
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
63
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
64
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
65
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
66
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
67
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
68
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
69
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
70
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
71
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
72
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
73
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
74
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
75
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
76
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
77
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
78
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
79
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
80
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
81
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
82
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
83
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
84
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
85
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
86
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
87
+
88
+
89
+ Rendered /Users/kikito/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
90
+ Rendered /Users/kikito/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
91
+ Rendered /Users/kikito/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms)
92
+
93
+
94
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 19:52:35 +0200
95
+ Processing by MissingI18n::LocalesController#index as HTML
96
+ Completed 500 Internal Server Error in 9ms
97
+
98
+ ActionView::MissingTemplate (Missing template missing_i18n/locales/index, missing_i18n/application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
99
+ * "/Users/kikito/programming/rails/missing_i18n/test/dummy/app/views"
100
+ * "/Users/kikito/programming/rails/missing_i18n/app/views"
101
+ ):
102
+ actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
103
+ actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
104
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
105
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
106
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
107
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
108
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
109
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
110
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
111
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
112
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
113
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
114
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
115
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
116
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
117
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
118
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
119
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
120
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
121
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
122
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
123
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
124
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
125
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
126
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
127
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
128
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
129
+ activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4194375526499327119__process_action__2648839914238230901__callbacks'
130
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
131
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
132
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
133
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
134
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
135
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
136
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
137
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
138
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
139
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
140
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
141
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
142
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
143
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
144
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
145
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
146
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
147
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
148
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
149
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
150
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
151
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
152
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
153
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
154
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
155
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
156
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
157
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
158
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
159
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
160
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
161
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
162
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
163
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
164
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
165
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
166
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
167
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
168
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
169
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
170
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
171
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
172
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2231339995025275879__call__502919333904674907__callbacks'
173
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
174
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
175
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
176
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
177
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
178
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
179
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
180
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
181
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
182
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
183
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
184
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
185
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
186
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
187
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
188
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
189
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
190
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
191
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
192
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
193
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
194
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
195
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
196
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
197
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
198
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
199
+
200
+
201
+ Rendered /Users/kikito/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
202
+
203
+
204
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 20:00:22 +0200
205
+ Processing by MissingI18n::LocalesController#index as HTML
206
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb (3.3ms)
207
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
208
+
209
+
210
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:00:22 +0200
211
+ Processing by MissingI18n::LocalesController#show as HTML
212
+ Parameters: {"id"=>"es"}
213
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb (105.2ms)
214
+ Completed 200 OK in 111ms (Views: 110.0ms | ActiveRecord: 0.0ms)
215
+
216
+
217
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 20:00:24 +0200
218
+ Processing by MissingI18n::LocalesController#index as HTML
219
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb (1.7ms)
220
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
221
+
222
+
223
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:00:24 +0200
224
+ Processing by MissingI18n::LocalesController#show as HTML
225
+ Parameters: {"id"=>"es"}
226
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb (2.5ms)
227
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
228
+ Connecting to database specified by database.yml
229
+
230
+
231
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 20:01:09 +0200
232
+ Processing by MissingI18n::LocalesController#index as HTML
233
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb (4.7ms)
234
+ Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.0ms)
235
+
236
+
237
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:01:09 +0200
238
+ Processing by MissingI18n::LocalesController#show as HTML
239
+ Parameters: {"id"=>"es"}
240
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb (50.1ms)
241
+ Completed 200 OK in 56ms (Views: 54.8ms | ActiveRecord: 0.0ms)
242
+
243
+
244
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 20:01:18 +0200
245
+ Processing by MissingI18n::LocalesController#index as HTML
246
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb (1.3ms)
247
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
248
+
249
+
250
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:01:19 +0200
251
+ Processing by MissingI18n::LocalesController#show as HTML
252
+ Parameters: {"id"=>"es"}
253
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb (2.4ms)
254
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
255
+ Connecting to database specified by database.yml
256
+
257
+
258
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 20:05:14 +0200
259
+ Processing by MissingI18n::LocalesController#index as HTML
260
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb (5.0ms)
261
+ Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.0ms)
262
+
263
+
264
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:05:15 +0200
265
+ Processing by MissingI18n::LocalesController#show as HTML
266
+ Parameters: {"id"=>"es"}
267
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb (50.5ms)
268
+ Completed 200 OK in 55ms (Views: 54.3ms | ActiveRecord: 0.0ms)
269
+
270
+
271
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 20:05:16 +0200
272
+ Processing by MissingI18n::LocalesController#index as HTML
273
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb (1.6ms)
274
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
275
+
276
+
277
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:05:16 +0200
278
+ Processing by MissingI18n::LocalesController#show as HTML
279
+ Parameters: {"id"=>"es"}
280
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb (3.4ms)
281
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
282
+ Connecting to database specified by database.yml
283
+
284
+
285
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
286
+ Processing by MissingI18n::LocalesController#index as HTML
287
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (4.7ms)
288
+ Compiled bootstrap.min.css (0ms) (pid 26812)
289
+ Compiled missing_i18n/application.css (17ms) (pid 26812)
290
+ Compiled jquery-1.8.3.min.js (0ms) (pid 26812)
291
+ Compiled missing_i18n/application.js (14ms) (pid 26812)
292
+ Completed 200 OK in 161ms (Views: 160.7ms | ActiveRecord: 0.0ms)
293
+
294
+
295
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
296
+ Served asset /missing_i18n/application.css - 200 OK (37ms)
297
+
298
+
299
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
300
+ Served asset /missing_i18n/application.js - 200 OK (10ms)
301
+
302
+
303
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
304
+ Served asset /bootstrap.min.css - 304 Not Modified (3ms)
305
+
306
+
307
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
308
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (3ms)
309
+
310
+
311
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
312
+ Processing by MissingI18n::LocalesController#show as HTML
313
+ Parameters: {"id"=>"es"}
314
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (54.2ms)
315
+ Completed 200 OK in 76ms (Views: 75.7ms | ActiveRecord: 0.0ms)
316
+
317
+
318
+ Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
319
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (53ms)
320
+
321
+
322
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
323
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
324
+
325
+
326
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
327
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
328
+
329
+
330
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 20:06:28 +0200
331
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
332
+
333
+
334
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 20:06:32 +0200
335
+ Processing by MissingI18n::LocalesController#show as HTML
336
+ Parameters: {"id"=>"en"}
337
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
338
+ Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms)
339
+
340
+
341
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:32 +0200
342
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
343
+
344
+
345
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:32 +0200
346
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
347
+
348
+
349
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 20:06:32 +0200
350
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
351
+
352
+
353
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:06:33 +0200
354
+ Processing by MissingI18n::LocalesController#show as HTML
355
+ Parameters: {"id"=>"es"}
356
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (1.9ms)
357
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
358
+
359
+
360
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:33 +0200
361
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
362
+
363
+
364
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 20:06:33 +0200
365
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
366
+
367
+
368
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:33 +0200
369
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
370
+
371
+
372
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 20:06:34 +0200
373
+ Processing by MissingI18n::LocalesController#show as HTML
374
+ Parameters: {"id"=>"en"}
375
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.1ms)
376
+ Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.0ms)
377
+
378
+
379
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:34 +0200
380
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
381
+
382
+
383
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:34 +0200
384
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
385
+
386
+
387
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 20:06:34 +0200
388
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
389
+
390
+
391
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:06:35 +0200
392
+ Processing by MissingI18n::LocalesController#show as HTML
393
+ Parameters: {"id"=>"es"}
394
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.0ms)
395
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
396
+
397
+
398
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:35 +0200
399
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
400
+
401
+
402
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 20:06:35 +0200
403
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
404
+
405
+
406
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 20:06:35 +0200
407
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
408
+
409
+
410
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 20:08:29 +0200
411
+ Processing by MissingI18n::LocalesController#show as HTML
412
+ Parameters: {"id"=>"en"}
413
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (23.7ms)
414
+ Completed 200 OK in 42ms (Views: 41.9ms | ActiveRecord: 0.0ms)
415
+
416
+
417
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 20:08:29 +0200
418
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
419
+
420
+
421
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 20:08:29 +0200
422
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
423
+
424
+
425
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 20:08:29 +0200
426
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
427
+
428
+
429
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 20:10:23 +0200
430
+ Processing by MissingI18n::LocalesController#show as HTML
431
+ Parameters: {"id"=>"es"}
432
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.3ms)
433
+ Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
434
+
435
+
436
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 20:10:23 +0200
437
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
438
+
439
+
440
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 20:10:23 +0200
441
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
442
+
443
+
444
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 20:10:23 +0200
445
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
446
+
447
+
448
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 21:41:55 +0200
449
+ Processing by MissingI18n::LocalesController#show as HTML
450
+ Parameters: {"id"=>"en"}
451
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (27.7ms)
452
+ Completed 200 OK in 215ms (Views: 208.9ms | ActiveRecord: 0.0ms)
453
+
454
+
455
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 21:41:55 +0200
456
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
457
+
458
+
459
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 21:41:55 +0200
460
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
461
+
462
+
463
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 21:41:55 +0200
464
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
465
+
466
+
467
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 21:41:55 +0200
468
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
469
+
470
+
471
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 21:41:56 +0200
472
+ Processing by MissingI18n::LocalesController#show as HTML
473
+ Parameters: {"id"=>"es"}
474
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.8ms)
475
+ Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms)
476
+
477
+
478
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 21:41:56 +0200
479
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
480
+
481
+
482
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 21:41:56 +0200
483
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
484
+
485
+
486
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 21:41:56 +0200
487
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
488
+
489
+
490
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 21:41:56 +0200
491
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
492
+
493
+
494
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 21:41:57 +0200
495
+ Processing by MissingI18n::LocalesController#show as HTML
496
+ Parameters: {"id"=>"en"}
497
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
498
+ Completed 200 OK in 38ms (Views: 38.1ms | ActiveRecord: 0.0ms)
499
+
500
+
501
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 21:41:57 +0200
502
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
503
+
504
+
505
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 21:41:57 +0200
506
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
507
+
508
+
509
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 21:41:57 +0200
510
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
511
+
512
+
513
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 21:41:57 +0200
514
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
515
+ Connecting to database specified by database.yml
516
+
517
+
518
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 23:06:17 +0200
519
+ Processing by MissingI18n::LocalesController#index as HTML
520
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (5.2ms)
521
+ Completed 200 OK in 80ms (Views: 79.5ms | ActiveRecord: 0.0ms)
522
+
523
+
524
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:06:18 +0200
525
+ Served asset /missing_i18n/application.css - 304 Not Modified (7ms)
526
+
527
+
528
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:06:18 +0200
529
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (3ms)
530
+
531
+
532
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:06:18 +0200
533
+ Served asset /missing_i18n/application.js - 304 Not Modified (6ms)
534
+
535
+
536
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:06:18 +0200
537
+ Served asset /bootstrap.min.css - 304 Not Modified (3ms)
538
+
539
+
540
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 23:06:18 +0200
541
+ Processing by MissingI18n::LocalesController#show as HTML
542
+ Parameters: {"id"=>"es"}
543
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (9.9ms)
544
+ Completed 500 Internal Server Error in 13ms
545
+
546
+ ActionView::Template::Error (undefined method `ignored_scopes' for MissingI18n:Module):
547
+ 1: <h2><%= @locale.id %></h2>
548
+ 2:
549
+ 3: <pre>
550
+ 4: <%= @locale.to_yaml %>
551
+ 5: </pre>
552
+ 6:
553
+ 7: <p class="pull-right">
554
+ /Users/kikito/programming/rails/missing_i18n/app/models/missing_i18n/locale.rb:14:in `to_yaml'
555
+ /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb:4:in `___sers_kikito_programming_rails_missing_i__n_app_views_missing_i__n_locales_show_html_erb__3854907873550780410_70317495996000'
556
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
557
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
558
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
559
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
560
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
561
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
562
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
563
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
564
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
565
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
566
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
567
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
568
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
569
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
570
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
571
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
572
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
573
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
574
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
575
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
576
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
577
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
578
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
579
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
580
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
581
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
582
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
583
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
584
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
585
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
586
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
587
+ actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
588
+ /Users/kikito/programming/rails/missing_i18n/app/controllers/missing_i18n/locales_controller.rb:9:in `show'
589
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
590
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
591
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
592
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
593
+ activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__197971046889680190__process_action__1142816226958257954__callbacks'
594
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
595
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
596
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
597
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
598
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
599
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
600
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
601
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
602
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
603
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
604
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
605
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
606
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
607
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
608
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
609
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
610
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
611
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
612
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
613
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
614
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
615
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
616
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
617
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
618
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
619
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
620
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
621
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
622
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
623
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
624
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
625
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
626
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
627
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
628
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
629
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
630
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
631
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
632
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
633
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
634
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
635
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
636
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1323275146528622634__call__4519464079254305358__callbacks'
637
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
638
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
639
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
640
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
641
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
642
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
643
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
644
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
645
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
646
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
647
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
648
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
649
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
650
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
651
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
652
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
653
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
654
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
655
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
656
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
657
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
658
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
659
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
660
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
661
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
662
+ /Users/kikito/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
663
+
664
+
665
+ Rendered /Users/kikito/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.5ms)
666
+ Rendered /Users/kikito/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.7ms)
667
+ Rendered /Users/kikito/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.6ms)
668
+
669
+
670
+ Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-05-07 23:06:18 +0200
671
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (7ms)
672
+ Connecting to database specified by database.yml
673
+
674
+
675
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 23:09:05 +0200
676
+ Processing by MissingI18n::LocalesController#index as HTML
677
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (5.0ms)
678
+ Completed 200 OK in 70ms (Views: 69.6ms | ActiveRecord: 0.0ms)
679
+
680
+
681
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:09:05 +0200
682
+ Served asset /bootstrap.min.css - 304 Not Modified (3ms)
683
+
684
+
685
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:09:05 +0200
686
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (4ms)
687
+
688
+
689
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:09:05 +0200
690
+ Served asset /missing_i18n/application.js - 304 Not Modified (5ms)
691
+
692
+
693
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:09:05 +0200
694
+ Served asset /missing_i18n/application.css - 304 Not Modified (4ms)
695
+
696
+
697
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 23:09:06 +0200
698
+ Processing by MissingI18n::LocalesController#show as HTML
699
+ Parameters: {"id"=>"es"}
700
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (85.9ms)
701
+ Completed 200 OK in 137ms (Views: 136.1ms | ActiveRecord: 0.0ms)
702
+
703
+
704
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:09:06 +0200
705
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
706
+
707
+
708
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:09:06 +0200
709
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
710
+
711
+
712
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:09:06 +0200
713
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
714
+
715
+
716
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:09:06 +0200
717
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
718
+
719
+
720
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:09:08 +0200
721
+ Processing by MissingI18n::LocalesController#show as HTML
722
+ Parameters: {"id"=>"en"}
723
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
724
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
725
+
726
+
727
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:09:09 +0200
728
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
729
+
730
+
731
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:09:09 +0200
732
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
733
+
734
+
735
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:09:09 +0200
736
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
737
+
738
+
739
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:09:09 +0200
740
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
741
+ Connecting to database specified by database.yml
742
+
743
+
744
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
745
+ Processing by MissingI18n::LocalesController#index as HTML
746
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (4.8ms)
747
+ Completed 200 OK in 68ms (Views: 67.6ms | ActiveRecord: 0.0ms)
748
+
749
+
750
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
751
+ Served asset /bootstrap.min.css - 304 Not Modified (6ms)
752
+
753
+
754
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
755
+ Served asset /missing_i18n/application.css - 304 Not Modified (4ms)
756
+
757
+
758
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
759
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (4ms)
760
+
761
+
762
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
763
+ Served asset /missing_i18n/application.js - 304 Not Modified (5ms)
764
+
765
+
766
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
767
+ Processing by MissingI18n::LocalesController#show as HTML
768
+ Parameters: {"id"=>"en"}
769
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (49.7ms)
770
+ Completed 200 OK in 93ms (Views: 91.8ms | ActiveRecord: 0.0ms)
771
+
772
+
773
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
774
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
775
+
776
+
777
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
778
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
779
+
780
+
781
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
782
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
783
+
784
+
785
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:10:50 +0200
786
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
787
+
788
+
789
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 23:10:53 +0200
790
+ Processing by MissingI18n::LocalesController#show as HTML
791
+ Parameters: {"id"=>"es"}
792
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (30.6ms)
793
+ Completed 200 OK in 45ms (Views: 44.5ms | ActiveRecord: 0.0ms)
794
+
795
+
796
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:10:53 +0200
797
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
798
+
799
+
800
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:10:53 +0200
801
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
802
+
803
+
804
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:10:53 +0200
805
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
806
+
807
+
808
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:10:53 +0200
809
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
810
+
811
+
812
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:10:54 +0200
813
+ Processing by MissingI18n::LocalesController#show as HTML
814
+ Parameters: {"id"=>"en"}
815
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.1ms)
816
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
817
+
818
+
819
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:10:54 +0200
820
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
821
+
822
+
823
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:10:54 +0200
824
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
825
+
826
+
827
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:10:54 +0200
828
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
829
+
830
+
831
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:10:54 +0200
832
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
833
+
834
+
835
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
836
+ Processing by MissingI18n::LocalesController#index as HTML
837
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (2.8ms)
838
+ Completed 200 OK in 39ms (Views: 38.4ms | ActiveRecord: 0.0ms)
839
+
840
+
841
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
842
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
843
+
844
+
845
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
846
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
847
+
848
+
849
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
850
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
851
+
852
+
853
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
854
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
855
+
856
+
857
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
858
+ Processing by MissingI18n::LocalesController#show as HTML
859
+ Parameters: {"id"=>"en"}
860
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.6ms)
861
+ Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms)
862
+
863
+
864
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
865
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
866
+
867
+
868
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
869
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
870
+
871
+
872
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
873
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
874
+
875
+
876
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:08 +0200
877
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
878
+
879
+
880
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
881
+ Processing by MissingI18n::LocalesController#index as HTML
882
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (2.8ms)
883
+ Completed 200 OK in 40ms (Views: 39.4ms | ActiveRecord: 0.0ms)
884
+
885
+
886
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
887
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
888
+
889
+
890
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
891
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
892
+
893
+
894
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
895
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
896
+
897
+
898
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
899
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
900
+
901
+
902
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
903
+ Processing by MissingI18n::LocalesController#show as HTML
904
+ Parameters: {"id"=>"en"}
905
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
906
+ Completed 200 OK in 26ms (Views: 26.0ms | ActiveRecord: 0.0ms)
907
+
908
+
909
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
910
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
911
+
912
+
913
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
914
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
915
+
916
+
917
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
918
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
919
+
920
+
921
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:24 +0200
922
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
923
+
924
+
925
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:12:33 +0200
926
+ Processing by MissingI18n::LocalesController#index as HTML
927
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (1.4ms)
928
+ Completed 200 OK in 38ms (Views: 37.5ms | ActiveRecord: 0.0ms)
929
+
930
+
931
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:33 +0200
932
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
933
+
934
+
935
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:33 +0200
936
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
937
+
938
+
939
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:33 +0200
940
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
941
+
942
+
943
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:33 +0200
944
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
945
+
946
+
947
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:12:33 +0200
948
+ Processing by MissingI18n::LocalesController#show as HTML
949
+ Parameters: {"id"=>"en"}
950
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
951
+ Completed 200 OK in 24ms (Views: 24.0ms | ActiveRecord: 0.0ms)
952
+
953
+
954
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:33 +0200
955
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
956
+
957
+
958
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:12:33 +0200
959
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
960
+
961
+
962
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:34 +0200
963
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
964
+
965
+
966
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:12:34 +0200
967
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
968
+ Connecting to database specified by database.yml
969
+
970
+
971
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:13:55 +0200
972
+ Processing by MissingI18n::LocalesController#index as HTML
973
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (25.9ms)
974
+ Completed 200 OK in 2132ms (Views: 91.3ms | ActiveRecord: 0.0ms)
975
+
976
+
977
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:13:57 +0200
978
+ Served asset /missing_i18n/application.css - 304 Not Modified (6ms)
979
+
980
+
981
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:13:57 +0200
982
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (3ms)
983
+
984
+
985
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:13:57 +0200
986
+ Served asset /bootstrap.min.css - 304 Not Modified (3ms)
987
+
988
+
989
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:13:57 +0200
990
+ Served asset /missing_i18n/application.js - 304 Not Modified (4ms)
991
+
992
+
993
+ Started GET "/missing_i18n/ar" for 127.0.0.1 at 2013-05-07 23:13:57 +0200
994
+ Processing by MissingI18n::LocalesController#show as HTML
995
+ Parameters: {"id"=>"ar"}
996
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2674.3ms)
997
+ Completed 200 OK in 2690ms (Views: 2689.5ms | ActiveRecord: 0.0ms)
998
+
999
+
1000
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:14:00 +0200
1001
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1002
+
1003
+
1004
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:14:00 +0200
1005
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1006
+
1007
+
1008
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:14:00 +0200
1009
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1010
+
1011
+
1012
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:14:00 +0200
1013
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1014
+
1015
+
1016
+ Started GET "/missing_i18n/az" for 127.0.0.1 at 2013-05-07 23:15:03 +0200
1017
+ Processing by MissingI18n::LocalesController#show as HTML
1018
+ Parameters: {"id"=>"az"}
1019
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (136.8ms)
1020
+ Completed 200 OK in 151ms (Views: 150.8ms | ActiveRecord: 0.0ms)
1021
+
1022
+
1023
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:15:03 +0200
1024
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1025
+
1026
+
1027
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:15:03 +0200
1028
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1029
+
1030
+
1031
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:15:03 +0200
1032
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1033
+
1034
+
1035
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:15:03 +0200
1036
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1037
+ Connecting to database specified by database.yml
1038
+
1039
+
1040
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:16:56 +0200
1041
+ Processing by MissingI18n::LocalesController#index as HTML
1042
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (27.3ms)
1043
+ Completed 200 OK in 2096ms (Views: 91.9ms | ActiveRecord: 0.0ms)
1044
+
1045
+
1046
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:16:58 +0200
1047
+ Served asset /bootstrap.min.css - 304 Not Modified (4ms)
1048
+
1049
+
1050
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:16:58 +0200
1051
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (4ms)
1052
+
1053
+
1054
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:16:58 +0200
1055
+ Served asset /missing_i18n/application.css - 304 Not Modified (7ms)
1056
+
1057
+
1058
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:16:58 +0200
1059
+ Served asset /missing_i18n/application.js - 304 Not Modified (5ms)
1060
+
1061
+
1062
+ Started GET "/missing_i18n/ar" for 127.0.0.1 at 2013-05-07 23:16:58 +0200
1063
+ Processing by MissingI18n::LocalesController#show as HTML
1064
+ Parameters: {"id"=>"ar"}
1065
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2606.3ms)
1066
+ Completed 200 OK in 2656ms (Views: 2655.5ms | ActiveRecord: 0.0ms)
1067
+
1068
+
1069
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:17:01 +0200
1070
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1071
+
1072
+
1073
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:17:01 +0200
1074
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1075
+
1076
+
1077
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:17:01 +0200
1078
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1079
+
1080
+
1081
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:17:01 +0200
1082
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1083
+
1084
+
1085
+ Started GET "/missing_i18n/az" for 127.0.0.1 at 2013-05-07 23:17:05 +0200
1086
+ Processing by MissingI18n::LocalesController#show as HTML
1087
+ Parameters: {"id"=>"az"}
1088
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (9.9ms)
1089
+ Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms)
1090
+
1091
+
1092
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:17:05 +0200
1093
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1094
+
1095
+
1096
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:17:05 +0200
1097
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1098
+
1099
+
1100
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:17:05 +0200
1101
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1102
+
1103
+
1104
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:17:05 +0200
1105
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1106
+
1107
+
1108
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1109
+ Processing by MissingI18n::LocalesController#index as HTML
1110
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (23.4ms)
1111
+ Completed 200 OK in 37ms (Views: 37.2ms | ActiveRecord: 0.0ms)
1112
+
1113
+
1114
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1115
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1116
+
1117
+
1118
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1119
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1120
+
1121
+
1122
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1123
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1124
+
1125
+
1126
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1127
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1128
+
1129
+
1130
+ Started GET "/missing_i18n/ar" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1131
+ Processing by MissingI18n::LocalesController#show as HTML
1132
+ Parameters: {"id"=>"ar"}
1133
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.9ms)
1134
+ Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms)
1135
+
1136
+
1137
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1138
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1139
+
1140
+
1141
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1142
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1143
+
1144
+
1145
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1146
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1147
+
1148
+
1149
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:31 +0200
1150
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1151
+
1152
+
1153
+ Started GET "/missing_i18n/az" for 127.0.0.1 at 2013-05-07 23:18:34 +0200
1154
+ Processing by MissingI18n::LocalesController#show as HTML
1155
+ Parameters: {"id"=>"az"}
1156
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (10.8ms)
1157
+ Completed 200 OK in 25ms (Views: 24.9ms | ActiveRecord: 0.0ms)
1158
+
1159
+
1160
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:34 +0200
1161
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1162
+
1163
+
1164
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:34 +0200
1165
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1166
+
1167
+
1168
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:34 +0200
1169
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1170
+
1171
+
1172
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:34 +0200
1173
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1174
+ Connecting to database specified by database.yml
1175
+
1176
+
1177
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:18:54 +0200
1178
+ Processing by MissingI18n::LocalesController#index as HTML
1179
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (30.6ms)
1180
+ Completed 200 OK in 2081ms (Views: 96.6ms | ActiveRecord: 0.0ms)
1181
+
1182
+
1183
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:56 +0200
1184
+ Served asset /bootstrap.min.css - 304 Not Modified (6ms)
1185
+
1186
+
1187
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:56 +0200
1188
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (3ms)
1189
+
1190
+
1191
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:56 +0200
1192
+ Served asset /missing_i18n/application.css - 304 Not Modified (4ms)
1193
+
1194
+
1195
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:56 +0200
1196
+ Served asset /missing_i18n/application.js - 304 Not Modified (6ms)
1197
+
1198
+
1199
+ Started GET "/missing_i18n/ar" for 127.0.0.1 at 2013-05-07 23:18:56 +0200
1200
+ Processing by MissingI18n::LocalesController#show as HTML
1201
+ Parameters: {"id"=>"ar"}
1202
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2598.9ms)
1203
+ Completed 200 OK in 2653ms (Views: 2652.2ms | ActiveRecord: 0.0ms)
1204
+
1205
+
1206
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:59 +0200
1207
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1208
+
1209
+
1210
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:18:59 +0200
1211
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1212
+
1213
+
1214
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:59 +0200
1215
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1216
+
1217
+
1218
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:18:59 +0200
1219
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1220
+
1221
+
1222
+ Started GET "/missing_i18n/az" for 127.0.0.1 at 2013-05-07 23:19:04 +0200
1223
+ Processing by MissingI18n::LocalesController#show as HTML
1224
+ Parameters: {"id"=>"az"}
1225
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.5ms)
1226
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
1227
+
1228
+
1229
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:04 +0200
1230
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1231
+
1232
+
1233
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:04 +0200
1234
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1235
+
1236
+
1237
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:04 +0200
1238
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1239
+
1240
+
1241
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:04 +0200
1242
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1243
+
1244
+
1245
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1246
+ Processing by MissingI18n::LocalesController#index as HTML
1247
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (22.3ms)
1248
+ Completed 200 OK in 37ms (Views: 36.4ms | ActiveRecord: 0.0ms)
1249
+
1250
+
1251
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1252
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1253
+
1254
+
1255
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1256
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1257
+
1258
+
1259
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1260
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1261
+
1262
+
1263
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1264
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1265
+
1266
+
1267
+ Started GET "/missing_i18n/ar" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1268
+ Processing by MissingI18n::LocalesController#show as HTML
1269
+ Parameters: {"id"=>"ar"}
1270
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (4.0ms)
1271
+ Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms)
1272
+
1273
+
1274
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1275
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1276
+
1277
+
1278
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1279
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1280
+
1281
+
1282
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1283
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1284
+
1285
+
1286
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:36 +0200
1287
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1288
+
1289
+
1290
+ Started GET "/missing_i18n/az" for 127.0.0.1 at 2013-05-07 23:19:39 +0200
1291
+ Processing by MissingI18n::LocalesController#show as HTML
1292
+ Parameters: {"id"=>"az"}
1293
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.4ms)
1294
+ Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
1295
+
1296
+
1297
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:39 +0200
1298
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1299
+
1300
+
1301
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:39 +0200
1302
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1303
+
1304
+
1305
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:39 +0200
1306
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1307
+
1308
+
1309
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:39 +0200
1310
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1311
+ Connecting to database specified by database.yml
1312
+
1313
+
1314
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:19:47 +0200
1315
+ Processing by MissingI18n::LocalesController#index as HTML
1316
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (25.6ms)
1317
+ Completed 200 OK in 2089ms (Views: 92.0ms | ActiveRecord: 0.0ms)
1318
+
1319
+
1320
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:50 +0200
1321
+ Served asset /bootstrap.min.css - 304 Not Modified (5ms)
1322
+
1323
+
1324
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:50 +0200
1325
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (3ms)
1326
+
1327
+
1328
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:50 +0200
1329
+ Served asset /missing_i18n/application.css - 304 Not Modified (4ms)
1330
+
1331
+
1332
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:50 +0200
1333
+ Served asset /missing_i18n/application.js - 304 Not Modified (4ms)
1334
+
1335
+
1336
+ Started GET "/missing_i18n/ar" for 127.0.0.1 at 2013-05-07 23:19:50 +0200
1337
+ Processing by MissingI18n::LocalesController#show as HTML
1338
+ Parameters: {"id"=>"ar"}
1339
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2618.7ms)
1340
+ Completed 200 OK in 2634ms (Views: 2633.2ms | ActiveRecord: 0.0ms)
1341
+
1342
+
1343
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:52 +0200
1344
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1345
+
1346
+
1347
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:52 +0200
1348
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1349
+
1350
+
1351
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:52 +0200
1352
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1353
+
1354
+
1355
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:52 +0200
1356
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1357
+
1358
+
1359
+ Started GET "/missing_i18n/az" for 127.0.0.1 at 2013-05-07 23:19:55 +0200
1360
+ Processing by MissingI18n::LocalesController#show as HTML
1361
+ Parameters: {"id"=>"az"}
1362
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
1363
+ Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms)
1364
+
1365
+
1366
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:55 +0200
1367
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1368
+
1369
+
1370
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:55 +0200
1371
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1372
+
1373
+
1374
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:55 +0200
1375
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1376
+
1377
+
1378
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:55 +0200
1379
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1380
+
1381
+
1382
+ Started GET "/missing_i18n/bg" for 127.0.0.1 at 2013-05-07 23:19:57 +0200
1383
+ Processing by MissingI18n::LocalesController#show as HTML
1384
+ Parameters: {"id"=>"bg"}
1385
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.9ms)
1386
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
1387
+
1388
+
1389
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:57 +0200
1390
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1391
+
1392
+
1393
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:57 +0200
1394
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1395
+
1396
+
1397
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:57 +0200
1398
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1399
+
1400
+
1401
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:57 +0200
1402
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1403
+
1404
+
1405
+ Started GET "/missing_i18n/bn" for 127.0.0.1 at 2013-05-07 23:19:59 +0200
1406
+ Processing by MissingI18n::LocalesController#show as HTML
1407
+ Parameters: {"id"=>"bn"}
1408
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
1409
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
1410
+
1411
+
1412
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:59 +0200
1413
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1414
+
1415
+
1416
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:19:59 +0200
1417
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1418
+
1419
+
1420
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:59 +0200
1421
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1422
+
1423
+
1424
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:19:59 +0200
1425
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1426
+
1427
+
1428
+ Started GET "/missing_i18n/bs" for 127.0.0.1 at 2013-05-07 23:20:58 +0200
1429
+ Processing by MissingI18n::LocalesController#show as HTML
1430
+ Parameters: {"id"=>"bs"}
1431
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
1432
+ Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
1433
+
1434
+
1435
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:20:58 +0200
1436
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1437
+
1438
+
1439
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:20:58 +0200
1440
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1441
+
1442
+
1443
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:20:58 +0200
1444
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1445
+
1446
+
1447
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:20:58 +0200
1448
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1449
+ Connecting to database specified by database.yml
1450
+
1451
+
1452
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:21:19 +0200
1453
+ Processing by MissingI18n::LocalesController#index as HTML
1454
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (25.2ms)
1455
+ Completed 200 OK in 2069ms (Views: 89.7ms | ActiveRecord: 0.0ms)
1456
+
1457
+
1458
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:21 +0200
1459
+ Served asset /bootstrap.min.css - 304 Not Modified (12ms)
1460
+
1461
+
1462
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:21 +0200
1463
+ Served asset /missing_i18n/application.css - 304 Not Modified (4ms)
1464
+
1465
+
1466
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:21 +0200
1467
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (3ms)
1468
+
1469
+
1470
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:21 +0200
1471
+ Served asset /missing_i18n/application.js - 304 Not Modified (4ms)
1472
+
1473
+
1474
+ Started GET "/missing_i18n/ar" for 127.0.0.1 at 2013-05-07 23:21:21 +0200
1475
+ Processing by MissingI18n::LocalesController#show as HTML
1476
+ Parameters: {"id"=>"ar"}
1477
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2614.0ms)
1478
+ Completed 200 OK in 2664ms (Views: 2663.5ms | ActiveRecord: 0.0ms)
1479
+
1480
+
1481
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:24 +0200
1482
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1483
+
1484
+
1485
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:24 +0200
1486
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1487
+
1488
+
1489
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:24 +0200
1490
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1491
+
1492
+
1493
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:24 +0200
1494
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1495
+
1496
+
1497
+ Started GET "/missing_i18n/az" for 127.0.0.1 at 2013-05-07 23:21:25 +0200
1498
+ Processing by MissingI18n::LocalesController#show as HTML
1499
+ Parameters: {"id"=>"az"}
1500
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.1ms)
1501
+ Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
1502
+
1503
+
1504
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:25 +0200
1505
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1506
+
1507
+
1508
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:25 +0200
1509
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1510
+
1511
+
1512
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:25 +0200
1513
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1514
+
1515
+
1516
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:25 +0200
1517
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1518
+
1519
+
1520
+ Started GET "/missing_i18n/bg" for 127.0.0.1 at 2013-05-07 23:21:26 +0200
1521
+ Processing by MissingI18n::LocalesController#show as HTML
1522
+ Parameters: {"id"=>"bg"}
1523
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.8ms)
1524
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
1525
+
1526
+
1527
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:26 +0200
1528
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1529
+
1530
+
1531
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:26 +0200
1532
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1533
+
1534
+
1535
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:26 +0200
1536
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1537
+
1538
+
1539
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:26 +0200
1540
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1541
+
1542
+
1543
+ Started GET "/missing_i18n/bn" for 127.0.0.1 at 2013-05-07 23:21:27 +0200
1544
+ Processing by MissingI18n::LocalesController#show as HTML
1545
+ Parameters: {"id"=>"bn"}
1546
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.2ms)
1547
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
1548
+
1549
+
1550
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:27 +0200
1551
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1552
+
1553
+
1554
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:27 +0200
1555
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1556
+
1557
+
1558
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:27 +0200
1559
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1560
+
1561
+
1562
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:27 +0200
1563
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1564
+
1565
+
1566
+ Started GET "/missing_i18n/bs" for 127.0.0.1 at 2013-05-07 23:21:28 +0200
1567
+ Processing by MissingI18n::LocalesController#show as HTML
1568
+ Parameters: {"id"=>"bs"}
1569
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
1570
+ Completed 200 OK in 56ms (Views: 55.3ms | ActiveRecord: 0.0ms)
1571
+
1572
+
1573
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:29 +0200
1574
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1575
+
1576
+
1577
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:29 +0200
1578
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1579
+
1580
+
1581
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:29 +0200
1582
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1583
+
1584
+
1585
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:29 +0200
1586
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1587
+
1588
+
1589
+ Started GET "/missing_i18n/ca" for 127.0.0.1 at 2013-05-07 23:21:30 +0200
1590
+ Processing by MissingI18n::LocalesController#show as HTML
1591
+ Parameters: {"id"=>"ca"}
1592
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.8ms)
1593
+ Completed 200 OK in 17ms (Views: 17.2ms | ActiveRecord: 0.0ms)
1594
+
1595
+
1596
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:30 +0200
1597
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1598
+
1599
+
1600
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:30 +0200
1601
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1602
+
1603
+
1604
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:30 +0200
1605
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1606
+
1607
+
1608
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:30 +0200
1609
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1610
+
1611
+
1612
+ Started GET "/missing_i18n/cs" for 127.0.0.1 at 2013-05-07 23:21:31 +0200
1613
+ Processing by MissingI18n::LocalesController#show as HTML
1614
+ Parameters: {"id"=>"cs"}
1615
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
1616
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
1617
+
1618
+
1619
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:31 +0200
1620
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1621
+
1622
+
1623
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:31 +0200
1624
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1625
+
1626
+
1627
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:31 +0200
1628
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1629
+
1630
+
1631
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:31 +0200
1632
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1633
+
1634
+
1635
+ Started GET "/missing_i18n/cy" for 127.0.0.1 at 2013-05-07 23:21:32 +0200
1636
+ Processing by MissingI18n::LocalesController#show as HTML
1637
+ Parameters: {"id"=>"cy"}
1638
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
1639
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
1640
+
1641
+
1642
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:32 +0200
1643
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1644
+
1645
+
1646
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:32 +0200
1647
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1648
+
1649
+
1650
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:32 +0200
1651
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1652
+
1653
+
1654
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:32 +0200
1655
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1656
+
1657
+
1658
+ Started GET "/missing_i18n/da" for 127.0.0.1 at 2013-05-07 23:21:34 +0200
1659
+ Processing by MissingI18n::LocalesController#show as HTML
1660
+ Parameters: {"id"=>"da"}
1661
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
1662
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
1663
+
1664
+
1665
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:34 +0200
1666
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1667
+
1668
+
1669
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:34 +0200
1670
+ Served asset /missing_i18n/application.css - 304 Not Modified (52ms)
1671
+
1672
+
1673
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:34 +0200
1674
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1675
+
1676
+
1677
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:34 +0200
1678
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1679
+
1680
+
1681
+ Started GET "/missing_i18n/de" for 127.0.0.1 at 2013-05-07 23:21:35 +0200
1682
+ Processing by MissingI18n::LocalesController#show as HTML
1683
+ Parameters: {"id"=>"de"}
1684
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
1685
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
1686
+
1687
+
1688
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:35 +0200
1689
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1690
+
1691
+
1692
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:35 +0200
1693
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1694
+
1695
+
1696
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:35 +0200
1697
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1698
+
1699
+
1700
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:35 +0200
1701
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1702
+
1703
+
1704
+ Started GET "/missing_i18n/de-AT" for 127.0.0.1 at 2013-05-07 23:21:36 +0200
1705
+ Processing by MissingI18n::LocalesController#show as HTML
1706
+ Parameters: {"id"=>"de-AT"}
1707
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.3ms)
1708
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
1709
+
1710
+
1711
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:36 +0200
1712
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1713
+
1714
+
1715
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:36 +0200
1716
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1717
+
1718
+
1719
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:36 +0200
1720
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1721
+
1722
+
1723
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:36 +0200
1724
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1725
+
1726
+
1727
+ Started GET "/missing_i18n/de-CH" for 127.0.0.1 at 2013-05-07 23:21:37 +0200
1728
+ Processing by MissingI18n::LocalesController#show as HTML
1729
+ Parameters: {"id"=>"de-CH"}
1730
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.3ms)
1731
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
1732
+
1733
+
1734
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:37 +0200
1735
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1736
+
1737
+
1738
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:37 +0200
1739
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1740
+
1741
+
1742
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:37 +0200
1743
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1744
+
1745
+
1746
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:37 +0200
1747
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1748
+
1749
+
1750
+ Started GET "/missing_i18n/el" for 127.0.0.1 at 2013-05-07 23:21:38 +0200
1751
+ Processing by MissingI18n::LocalesController#show as HTML
1752
+ Parameters: {"id"=>"el"}
1753
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
1754
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
1755
+
1756
+
1757
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:38 +0200
1758
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1759
+
1760
+
1761
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:38 +0200
1762
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1763
+
1764
+
1765
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:38 +0200
1766
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1767
+
1768
+
1769
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:38 +0200
1770
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1771
+
1772
+
1773
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:21:41 +0200
1774
+ Processing by MissingI18n::LocalesController#show as HTML
1775
+ Parameters: {"id"=>"en"}
1776
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (26.8ms)
1777
+ Completed 200 OK in 83ms (Views: 82.6ms | ActiveRecord: 0.0ms)
1778
+
1779
+
1780
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:41 +0200
1781
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1782
+
1783
+
1784
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:41 +0200
1785
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1786
+
1787
+
1788
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:41 +0200
1789
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1790
+
1791
+
1792
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:41 +0200
1793
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1794
+
1795
+
1796
+ Started GET "/missing_i18n/en-AU" for 127.0.0.1 at 2013-05-07 23:21:43 +0200
1797
+ Processing by MissingI18n::LocalesController#show as HTML
1798
+ Parameters: {"id"=>"en-AU"}
1799
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
1800
+ Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms)
1801
+
1802
+
1803
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:43 +0200
1804
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1805
+
1806
+
1807
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:43 +0200
1808
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1809
+
1810
+
1811
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:44 +0200
1812
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1813
+
1814
+
1815
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:44 +0200
1816
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1817
+
1818
+
1819
+ Started GET "/missing_i18n/en-CA" for 127.0.0.1 at 2013-05-07 23:21:46 +0200
1820
+ Processing by MissingI18n::LocalesController#show as HTML
1821
+ Parameters: {"id"=>"en-CA"}
1822
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (4.0ms)
1823
+ Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.0ms)
1824
+
1825
+
1826
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:46 +0200
1827
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1828
+
1829
+
1830
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:46 +0200
1831
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1832
+
1833
+
1834
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:46 +0200
1835
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1836
+
1837
+
1838
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:46 +0200
1839
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1840
+
1841
+
1842
+ Started GET "/missing_i18n/en-GB" for 127.0.0.1 at 2013-05-07 23:21:47 +0200
1843
+ Processing by MissingI18n::LocalesController#show as HTML
1844
+ Parameters: {"id"=>"en-GB"}
1845
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
1846
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
1847
+
1848
+
1849
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:47 +0200
1850
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1851
+
1852
+
1853
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:47 +0200
1854
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1855
+
1856
+
1857
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:47 +0200
1858
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1859
+
1860
+
1861
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:47 +0200
1862
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1863
+
1864
+
1865
+ Started GET "/missing_i18n/en-IN" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1866
+ Processing by MissingI18n::LocalesController#show as HTML
1867
+ Parameters: {"id"=>"en-IN"}
1868
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.9ms)
1869
+ Completed 200 OK in 57ms (Views: 57.2ms | ActiveRecord: 0.0ms)
1870
+
1871
+
1872
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1873
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1874
+
1875
+
1876
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1877
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1878
+
1879
+
1880
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1881
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1882
+
1883
+
1884
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1885
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1886
+
1887
+
1888
+ Started GET "/missing_i18n/en-IN" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1889
+ Processing by MissingI18n::LocalesController#show as HTML
1890
+ Parameters: {"id"=>"en-IN"}
1891
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
1892
+ Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
1893
+
1894
+
1895
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1896
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1897
+
1898
+
1899
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1900
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1901
+
1902
+
1903
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1904
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1905
+
1906
+
1907
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:48 +0200
1908
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1909
+
1910
+
1911
+ Started GET "/missing_i18n/eo" for 127.0.0.1 at 2013-05-07 23:21:51 +0200
1912
+ Processing by MissingI18n::LocalesController#show as HTML
1913
+ Parameters: {"id"=>"eo"}
1914
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
1915
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
1916
+
1917
+
1918
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:51 +0200
1919
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1920
+
1921
+
1922
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:51 +0200
1923
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1924
+
1925
+
1926
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:51 +0200
1927
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1928
+
1929
+
1930
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:51 +0200
1931
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1932
+
1933
+
1934
+ Started GET "/missing_i18n/es-419" for 127.0.0.1 at 2013-05-07 23:21:52 +0200
1935
+ Processing by MissingI18n::LocalesController#show as HTML
1936
+ Parameters: {"id"=>"es-419"}
1937
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.3ms)
1938
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
1939
+
1940
+
1941
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:52 +0200
1942
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1943
+
1944
+
1945
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:52 +0200
1946
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1947
+
1948
+
1949
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:52 +0200
1950
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1951
+
1952
+
1953
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:52 +0200
1954
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1955
+
1956
+
1957
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 23:21:54 +0200
1958
+ Processing by MissingI18n::LocalesController#show as HTML
1959
+ Parameters: {"id"=>"es"}
1960
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.1ms)
1961
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
1962
+
1963
+
1964
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:54 +0200
1965
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1966
+
1967
+
1968
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:54 +0200
1969
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
1970
+
1971
+
1972
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:54 +0200
1973
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1974
+
1975
+
1976
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:54 +0200
1977
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1978
+
1979
+
1980
+ Started GET "/missing_i18n/es-419" for 127.0.0.1 at 2013-05-07 23:21:56 +0200
1981
+ Processing by MissingI18n::LocalesController#show as HTML
1982
+ Parameters: {"id"=>"es-419"}
1983
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
1984
+ Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms)
1985
+
1986
+
1987
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:56 +0200
1988
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
1989
+
1990
+
1991
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:56 +0200
1992
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
1993
+
1994
+
1995
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:56 +0200
1996
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
1997
+
1998
+
1999
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:56 +0200
2000
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2001
+
2002
+
2003
+ Started GET "/missing_i18n/es-AR" for 127.0.0.1 at 2013-05-07 23:21:58 +0200
2004
+ Processing by MissingI18n::LocalesController#show as HTML
2005
+ Parameters: {"id"=>"es-AR"}
2006
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
2007
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
2008
+
2009
+
2010
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:58 +0200
2011
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2012
+
2013
+
2014
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:58 +0200
2015
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2016
+
2017
+
2018
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:21:58 +0200
2019
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2020
+
2021
+
2022
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:21:58 +0200
2023
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2024
+
2025
+
2026
+ Started GET "/missing_i18n/et" for 127.0.0.1 at 2013-05-07 23:22:02 +0200
2027
+ Processing by MissingI18n::LocalesController#show as HTML
2028
+ Parameters: {"id"=>"et"}
2029
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
2030
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
2031
+
2032
+
2033
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:02 +0200
2034
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2035
+
2036
+
2037
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:02 +0200
2038
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2039
+
2040
+
2041
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:02 +0200
2042
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2043
+
2044
+
2045
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:02 +0200
2046
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2047
+
2048
+
2049
+ Started GET "/missing_i18n/eu" for 127.0.0.1 at 2013-05-07 23:22:04 +0200
2050
+ Processing by MissingI18n::LocalesController#show as HTML
2051
+ Parameters: {"id"=>"eu"}
2052
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.3ms)
2053
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
2054
+
2055
+
2056
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:04 +0200
2057
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2058
+
2059
+
2060
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:04 +0200
2061
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2062
+
2063
+
2064
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:04 +0200
2065
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2066
+
2067
+
2068
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:04 +0200
2069
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2070
+
2071
+
2072
+ Started GET "/missing_i18n/fa" for 127.0.0.1 at 2013-05-07 23:22:05 +0200
2073
+ Processing by MissingI18n::LocalesController#show as HTML
2074
+ Parameters: {"id"=>"fa"}
2075
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2076
+ Completed 200 OK in 56ms (Views: 55.4ms | ActiveRecord: 0.0ms)
2077
+
2078
+
2079
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:05 +0200
2080
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2081
+
2082
+
2083
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:05 +0200
2084
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2085
+
2086
+
2087
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:05 +0200
2088
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2089
+
2090
+
2091
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:05 +0200
2092
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2093
+
2094
+
2095
+ Started GET "/missing_i18n/fi" for 127.0.0.1 at 2013-05-07 23:22:06 +0200
2096
+ Processing by MissingI18n::LocalesController#show as HTML
2097
+ Parameters: {"id"=>"fi"}
2098
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
2099
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
2100
+
2101
+
2102
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:06 +0200
2103
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2104
+
2105
+
2106
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:06 +0200
2107
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2108
+
2109
+
2110
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:07 +0200
2111
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2112
+
2113
+
2114
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:07 +0200
2115
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2116
+
2117
+
2118
+ Started GET "/missing_i18n/fr" for 127.0.0.1 at 2013-05-07 23:22:07 +0200
2119
+ Processing by MissingI18n::LocalesController#show as HTML
2120
+ Parameters: {"id"=>"fr"}
2121
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.6ms)
2122
+ Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms)
2123
+
2124
+
2125
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:07 +0200
2126
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2127
+
2128
+
2129
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:07 +0200
2130
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2131
+
2132
+
2133
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:07 +0200
2134
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2135
+
2136
+
2137
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:07 +0200
2138
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2139
+
2140
+
2141
+ Started GET "/missing_i18n/fr-CA" for 127.0.0.1 at 2013-05-07 23:22:08 +0200
2142
+ Processing by MissingI18n::LocalesController#show as HTML
2143
+ Parameters: {"id"=>"fr-CA"}
2144
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
2145
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
2146
+
2147
+
2148
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:08 +0200
2149
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2150
+
2151
+
2152
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:08 +0200
2153
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2154
+
2155
+
2156
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:08 +0200
2157
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2158
+
2159
+
2160
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:08 +0200
2161
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2162
+
2163
+
2164
+ Started GET "/missing_i18n/fr-CH" for 127.0.0.1 at 2013-05-07 23:22:09 +0200
2165
+ Processing by MissingI18n::LocalesController#show as HTML
2166
+ Parameters: {"id"=>"fr-CH"}
2167
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
2168
+ Completed 200 OK in 58ms (Views: 57.6ms | ActiveRecord: 0.0ms)
2169
+
2170
+
2171
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:10 +0200
2172
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2173
+
2174
+
2175
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:10 +0200
2176
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2177
+
2178
+
2179
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:10 +0200
2180
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2181
+
2182
+
2183
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:10 +0200
2184
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2185
+
2186
+
2187
+ Started GET "/missing_i18n/sw" for 127.0.0.1 at 2013-05-07 23:22:10 +0200
2188
+ Processing by MissingI18n::LocalesController#show as HTML
2189
+ Parameters: {"id"=>"sw"}
2190
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2191
+ Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms)
2192
+
2193
+
2194
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:10 +0200
2195
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2196
+
2197
+
2198
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:10 +0200
2199
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2200
+
2201
+
2202
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:10 +0200
2203
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2204
+
2205
+
2206
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:10 +0200
2207
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2208
+
2209
+
2210
+ Started GET "/missing_i18n/gl" for 127.0.0.1 at 2013-05-07 23:22:11 +0200
2211
+ Processing by MissingI18n::LocalesController#show as HTML
2212
+ Parameters: {"id"=>"gl"}
2213
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.5ms)
2214
+ Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms)
2215
+
2216
+
2217
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:11 +0200
2218
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2219
+
2220
+
2221
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:11 +0200
2222
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2223
+
2224
+
2225
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:11 +0200
2226
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2227
+
2228
+
2229
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:11 +0200
2230
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2231
+
2232
+
2233
+ Started GET "/missing_i18n/he" for 127.0.0.1 at 2013-05-07 23:22:12 +0200
2234
+ Processing by MissingI18n::LocalesController#show as HTML
2235
+ Parameters: {"id"=>"he"}
2236
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.9ms)
2237
+ Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms)
2238
+
2239
+
2240
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:12 +0200
2241
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2242
+
2243
+
2244
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:12 +0200
2245
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2246
+
2247
+
2248
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:12 +0200
2249
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2250
+
2251
+
2252
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:12 +0200
2253
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2254
+
2255
+
2256
+ Started GET "/missing_i18n/gl" for 127.0.0.1 at 2013-05-07 23:22:13 +0200
2257
+ Processing by MissingI18n::LocalesController#show as HTML
2258
+ Parameters: {"id"=>"gl"}
2259
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.4ms)
2260
+ Completed 200 OK in 17ms (Views: 17.1ms | ActiveRecord: 0.0ms)
2261
+
2262
+
2263
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:13 +0200
2264
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2265
+
2266
+
2267
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:13 +0200
2268
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2269
+
2270
+
2271
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:13 +0200
2272
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2273
+
2274
+
2275
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:13 +0200
2276
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2277
+
2278
+
2279
+ Started GET "/missing_i18n/he" for 127.0.0.1 at 2013-05-07 23:22:32 +0200
2280
+ Processing by MissingI18n::LocalesController#show as HTML
2281
+ Parameters: {"id"=>"he"}
2282
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
2283
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
2284
+
2285
+
2286
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:32 +0200
2287
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2288
+
2289
+
2290
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:32 +0200
2291
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2292
+
2293
+
2294
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:32 +0200
2295
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2296
+
2297
+
2298
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:32 +0200
2299
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2300
+
2301
+
2302
+ Started GET "/missing_i18n/hi" for 127.0.0.1 at 2013-05-07 23:22:34 +0200
2303
+ Processing by MissingI18n::LocalesController#show as HTML
2304
+ Parameters: {"id"=>"hi"}
2305
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
2306
+ Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms)
2307
+
2308
+
2309
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:34 +0200
2310
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2311
+
2312
+
2313
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:34 +0200
2314
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2315
+
2316
+
2317
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:34 +0200
2318
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2319
+
2320
+
2321
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:34 +0200
2322
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2323
+
2324
+
2325
+ Started GET "/missing_i18n/hi-IN" for 127.0.0.1 at 2013-05-07 23:22:36 +0200
2326
+ Processing by MissingI18n::LocalesController#show as HTML
2327
+ Parameters: {"id"=>"hi-IN"}
2328
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
2329
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
2330
+
2331
+
2332
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:36 +0200
2333
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2334
+
2335
+
2336
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:36 +0200
2337
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2338
+
2339
+
2340
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:36 +0200
2341
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2342
+
2343
+
2344
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:36 +0200
2345
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2346
+
2347
+
2348
+ Started GET "/missing_i18n/hr" for 127.0.0.1 at 2013-05-07 23:22:37 +0200
2349
+ Processing by MissingI18n::LocalesController#show as HTML
2350
+ Parameters: {"id"=>"hr"}
2351
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
2352
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
2353
+
2354
+
2355
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:37 +0200
2356
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2357
+
2358
+
2359
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:37 +0200
2360
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2361
+
2362
+
2363
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:37 +0200
2364
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2365
+
2366
+
2367
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:37 +0200
2368
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2369
+
2370
+
2371
+ Started GET "/missing_i18n/hu" for 127.0.0.1 at 2013-05-07 23:22:38 +0200
2372
+ Processing by MissingI18n::LocalesController#show as HTML
2373
+ Parameters: {"id"=>"hu"}
2374
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
2375
+ Completed 200 OK in 58ms (Views: 57.6ms | ActiveRecord: 0.0ms)
2376
+
2377
+
2378
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:38 +0200
2379
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2380
+
2381
+
2382
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:38 +0200
2383
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2384
+
2385
+
2386
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:38 +0200
2387
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2388
+
2389
+
2390
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:38 +0200
2391
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2392
+
2393
+
2394
+ Started GET "/missing_i18n/id" for 127.0.0.1 at 2013-05-07 23:22:39 +0200
2395
+ Processing by MissingI18n::LocalesController#show as HTML
2396
+ Parameters: {"id"=>"id"}
2397
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2398
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
2399
+
2400
+
2401
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:39 +0200
2402
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2403
+
2404
+
2405
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:39 +0200
2406
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2407
+
2408
+
2409
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:39 +0200
2410
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2411
+
2412
+
2413
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:39 +0200
2414
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2415
+
2416
+
2417
+ Started GET "/missing_i18n/it" for 127.0.0.1 at 2013-05-07 23:22:40 +0200
2418
+ Processing by MissingI18n::LocalesController#show as HTML
2419
+ Parameters: {"id"=>"it"}
2420
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
2421
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
2422
+
2423
+
2424
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:40 +0200
2425
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2426
+
2427
+
2428
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:40 +0200
2429
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2430
+
2431
+
2432
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:40 +0200
2433
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2434
+
2435
+
2436
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:40 +0200
2437
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2438
+
2439
+
2440
+ Started GET "/missing_i18n/is" for 127.0.0.1 at 2013-05-07 23:22:40 +0200
2441
+ Processing by MissingI18n::LocalesController#show as HTML
2442
+ Parameters: {"id"=>"is"}
2443
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2444
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
2445
+
2446
+
2447
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:41 +0200
2448
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2449
+
2450
+
2451
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:41 +0200
2452
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2453
+
2454
+
2455
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:41 +0200
2456
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2457
+
2458
+
2459
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:41 +0200
2460
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2461
+
2462
+
2463
+ Started GET "/missing_i18n/it" for 127.0.0.1 at 2013-05-07 23:22:42 +0200
2464
+ Processing by MissingI18n::LocalesController#show as HTML
2465
+ Parameters: {"id"=>"it"}
2466
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
2467
+ Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms)
2468
+
2469
+
2470
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:42 +0200
2471
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2472
+
2473
+
2474
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:42 +0200
2475
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2476
+
2477
+
2478
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:42 +0200
2479
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2480
+
2481
+
2482
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:42 +0200
2483
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2484
+
2485
+
2486
+ Started GET "/missing_i18n/it-CH" for 127.0.0.1 at 2013-05-07 23:22:43 +0200
2487
+ Processing by MissingI18n::LocalesController#show as HTML
2488
+ Parameters: {"id"=>"it-CH"}
2489
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
2490
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
2491
+
2492
+
2493
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:43 +0200
2494
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2495
+
2496
+
2497
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:43 +0200
2498
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2499
+
2500
+
2501
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:43 +0200
2502
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2503
+
2504
+
2505
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:43 +0200
2506
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2507
+
2508
+
2509
+ Started GET "/missing_i18n/ja" for 127.0.0.1 at 2013-05-07 23:22:44 +0200
2510
+ Processing by MissingI18n::LocalesController#show as HTML
2511
+ Parameters: {"id"=>"ja"}
2512
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2513
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
2514
+
2515
+
2516
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:44 +0200
2517
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2518
+
2519
+
2520
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:44 +0200
2521
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2522
+
2523
+
2524
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:44 +0200
2525
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2526
+
2527
+
2528
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:44 +0200
2529
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2530
+
2531
+
2532
+ Started GET "/missing_i18n/kn" for 127.0.0.1 at 2013-05-07 23:22:45 +0200
2533
+ Processing by MissingI18n::LocalesController#show as HTML
2534
+ Parameters: {"id"=>"kn"}
2535
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2536
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
2537
+
2538
+
2539
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:45 +0200
2540
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2541
+
2542
+
2543
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:45 +0200
2544
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2545
+
2546
+
2547
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:45 +0200
2548
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2549
+
2550
+
2551
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:45 +0200
2552
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2553
+
2554
+
2555
+ Started GET "/missing_i18n/ko" for 127.0.0.1 at 2013-05-07 23:22:46 +0200
2556
+ Processing by MissingI18n::LocalesController#show as HTML
2557
+ Parameters: {"id"=>"ko"}
2558
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
2559
+ Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms)
2560
+
2561
+
2562
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:46 +0200
2563
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2564
+
2565
+
2566
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:46 +0200
2567
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2568
+
2569
+
2570
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:46 +0200
2571
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2572
+
2573
+
2574
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:46 +0200
2575
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2576
+
2577
+
2578
+ Started GET "/missing_i18n/lo" for 127.0.0.1 at 2013-05-07 23:22:47 +0200
2579
+ Processing by MissingI18n::LocalesController#show as HTML
2580
+ Parameters: {"id"=>"lo"}
2581
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2582
+ Completed 200 OK in 58ms (Views: 57.7ms | ActiveRecord: 0.0ms)
2583
+
2584
+
2585
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:47 +0200
2586
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2587
+
2588
+
2589
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:47 +0200
2590
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2591
+
2592
+
2593
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:47 +0200
2594
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2595
+
2596
+
2597
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:47 +0200
2598
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2599
+
2600
+
2601
+ Started GET "/missing_i18n/lt" for 127.0.0.1 at 2013-05-07 23:22:48 +0200
2602
+ Processing by MissingI18n::LocalesController#show as HTML
2603
+ Parameters: {"id"=>"lt"}
2604
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2605
+ Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms)
2606
+
2607
+
2608
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:48 +0200
2609
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2610
+
2611
+
2612
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:48 +0200
2613
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2614
+
2615
+
2616
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:48 +0200
2617
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2618
+
2619
+
2620
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:48 +0200
2621
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2622
+
2623
+
2624
+ Started GET "/missing_i18n/lv" for 127.0.0.1 at 2013-05-07 23:22:49 +0200
2625
+ Processing by MissingI18n::LocalesController#show as HTML
2626
+ Parameters: {"id"=>"lv"}
2627
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
2628
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
2629
+
2630
+
2631
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:49 +0200
2632
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2633
+
2634
+
2635
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:49 +0200
2636
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2637
+
2638
+
2639
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:49 +0200
2640
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2641
+
2642
+
2643
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:49 +0200
2644
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2645
+
2646
+
2647
+ Started GET "/missing_i18n/mk" for 127.0.0.1 at 2013-05-07 23:22:50 +0200
2648
+ Processing by MissingI18n::LocalesController#show as HTML
2649
+ Parameters: {"id"=>"mk"}
2650
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
2651
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
2652
+
2653
+
2654
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:50 +0200
2655
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2656
+
2657
+
2658
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:50 +0200
2659
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2660
+
2661
+
2662
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:50 +0200
2663
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2664
+
2665
+
2666
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:50 +0200
2667
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2668
+
2669
+
2670
+ Started GET "/missing_i18n/mn" for 127.0.0.1 at 2013-05-07 23:22:51 +0200
2671
+ Processing by MissingI18n::LocalesController#show as HTML
2672
+ Parameters: {"id"=>"mn"}
2673
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2674
+ Completed 200 OK in 55ms (Views: 54.4ms | ActiveRecord: 0.0ms)
2675
+
2676
+
2677
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:52 +0200
2678
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2679
+
2680
+
2681
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:52 +0200
2682
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2683
+
2684
+
2685
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:52 +0200
2686
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2687
+
2688
+
2689
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:52 +0200
2690
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2691
+
2692
+
2693
+ Started GET "/missing_i18n/nb" for 127.0.0.1 at 2013-05-07 23:22:52 +0200
2694
+ Processing by MissingI18n::LocalesController#show as HTML
2695
+ Parameters: {"id"=>"nb"}
2696
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
2697
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
2698
+
2699
+
2700
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:52 +0200
2701
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2702
+
2703
+
2704
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:52 +0200
2705
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2706
+
2707
+
2708
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:52 +0200
2709
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2710
+
2711
+
2712
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:52 +0200
2713
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2714
+
2715
+
2716
+ Started GET "/missing_i18n/ne" for 127.0.0.1 at 2013-05-07 23:22:53 +0200
2717
+ Processing by MissingI18n::LocalesController#show as HTML
2718
+ Parameters: {"id"=>"ne"}
2719
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
2720
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
2721
+
2722
+
2723
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:53 +0200
2724
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2725
+
2726
+
2727
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:53 +0200
2728
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2729
+
2730
+
2731
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:53 +0200
2732
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2733
+
2734
+
2735
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:53 +0200
2736
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2737
+
2738
+
2739
+ Started GET "/missing_i18n/nl" for 127.0.0.1 at 2013-05-07 23:22:54 +0200
2740
+ Processing by MissingI18n::LocalesController#show as HTML
2741
+ Parameters: {"id"=>"nl"}
2742
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
2743
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
2744
+
2745
+
2746
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:54 +0200
2747
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2748
+
2749
+
2750
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:54 +0200
2751
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2752
+
2753
+
2754
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:54 +0200
2755
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2756
+
2757
+
2758
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:54 +0200
2759
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2760
+
2761
+
2762
+ Started GET "/missing_i18n/nn" for 127.0.0.1 at 2013-05-07 23:22:54 +0200
2763
+ Processing by MissingI18n::LocalesController#show as HTML
2764
+ Parameters: {"id"=>"nn"}
2765
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (4.5ms)
2766
+ Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms)
2767
+
2768
+
2769
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:54 +0200
2770
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2771
+
2772
+
2773
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:55 +0200
2774
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2775
+
2776
+
2777
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:22:55 +0200
2778
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2779
+
2780
+
2781
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:22:55 +0200
2782
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2783
+
2784
+
2785
+ Started GET "/missing_i18n/pl" for 127.0.0.1 at 2013-05-07 23:23:14 +0200
2786
+ Processing by MissingI18n::LocalesController#show as HTML
2787
+ Parameters: {"id"=>"pl"}
2788
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.8ms)
2789
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
2790
+
2791
+
2792
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:14 +0200
2793
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2794
+
2795
+
2796
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:14 +0200
2797
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2798
+
2799
+
2800
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:14 +0200
2801
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2802
+
2803
+
2804
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:14 +0200
2805
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2806
+
2807
+
2808
+ Started GET "/missing_i18n/pt" for 127.0.0.1 at 2013-05-07 23:23:17 +0200
2809
+ Processing by MissingI18n::LocalesController#show as HTML
2810
+ Parameters: {"id"=>"pt"}
2811
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
2812
+ Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
2813
+
2814
+
2815
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:17 +0200
2816
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2817
+
2818
+
2819
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:17 +0200
2820
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2821
+
2822
+
2823
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:17 +0200
2824
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2825
+
2826
+
2827
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:17 +0200
2828
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2829
+
2830
+
2831
+ Started GET "/missing_i18n/pt-BR" for 127.0.0.1 at 2013-05-07 23:23:18 +0200
2832
+ Processing by MissingI18n::LocalesController#show as HTML
2833
+ Parameters: {"id"=>"pt-BR"}
2834
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.3ms)
2835
+ Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms)
2836
+
2837
+
2838
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:18 +0200
2839
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2840
+
2841
+
2842
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:18 +0200
2843
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2844
+
2845
+
2846
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:18 +0200
2847
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2848
+
2849
+
2850
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:18 +0200
2851
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2852
+
2853
+
2854
+ Started GET "/missing_i18n/rm" for 127.0.0.1 at 2013-05-07 23:23:18 +0200
2855
+ Processing by MissingI18n::LocalesController#show as HTML
2856
+ Parameters: {"id"=>"rm"}
2857
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.8ms)
2858
+ Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms)
2859
+
2860
+
2861
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:19 +0200
2862
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2863
+
2864
+
2865
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:19 +0200
2866
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2867
+
2868
+
2869
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:19 +0200
2870
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2871
+
2872
+
2873
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:19 +0200
2874
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2875
+
2876
+
2877
+ Started GET "/missing_i18n/ro" for 127.0.0.1 at 2013-05-07 23:23:19 +0200
2878
+ Processing by MissingI18n::LocalesController#show as HTML
2879
+ Parameters: {"id"=>"ro"}
2880
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
2881
+ Completed 200 OK in 58ms (Views: 58.1ms | ActiveRecord: 0.0ms)
2882
+
2883
+
2884
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:19 +0200
2885
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2886
+
2887
+
2888
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:19 +0200
2889
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2890
+
2891
+
2892
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:19 +0200
2893
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2894
+
2895
+
2896
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:19 +0200
2897
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2898
+
2899
+
2900
+ Started GET "/missing_i18n/ru" for 127.0.0.1 at 2013-05-07 23:23:20 +0200
2901
+ Processing by MissingI18n::LocalesController#show as HTML
2902
+ Parameters: {"id"=>"ru"}
2903
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
2904
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
2905
+
2906
+
2907
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:20 +0200
2908
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2909
+
2910
+
2911
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:20 +0200
2912
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2913
+
2914
+
2915
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:20 +0200
2916
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2917
+
2918
+
2919
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:20 +0200
2920
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2921
+
2922
+
2923
+ Started GET "/missing_i18n/sk" for 127.0.0.1 at 2013-05-07 23:23:21 +0200
2924
+ Processing by MissingI18n::LocalesController#show as HTML
2925
+ Parameters: {"id"=>"sk"}
2926
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
2927
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
2928
+
2929
+
2930
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:21 +0200
2931
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2932
+
2933
+
2934
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:21 +0200
2935
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2936
+
2937
+
2938
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:21 +0200
2939
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2940
+
2941
+
2942
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:21 +0200
2943
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2944
+
2945
+
2946
+ Started GET "/missing_i18n/sl" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2947
+ Processing by MissingI18n::LocalesController#show as HTML
2948
+ Parameters: {"id"=>"sl"}
2949
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
2950
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
2951
+
2952
+
2953
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2954
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2955
+
2956
+
2957
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2958
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2959
+
2960
+
2961
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2962
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2963
+
2964
+
2965
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2966
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2967
+
2968
+
2969
+ Started GET "/missing_i18n/sr" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2970
+ Processing by MissingI18n::LocalesController#show as HTML
2971
+ Parameters: {"id"=>"sr"}
2972
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
2973
+ Completed 200 OK in 57ms (Views: 57.3ms | ActiveRecord: 0.0ms)
2974
+
2975
+
2976
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2977
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
2978
+
2979
+
2980
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2981
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
2982
+
2983
+
2984
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2985
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
2986
+
2987
+
2988
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:22 +0200
2989
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
2990
+
2991
+
2992
+ Started GET "/missing_i18n/sv" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
2993
+ Processing by MissingI18n::LocalesController#show as HTML
2994
+ Parameters: {"id"=>"sv"}
2995
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
2996
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
2997
+
2998
+
2999
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
3000
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3001
+
3002
+
3003
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
3004
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3005
+
3006
+
3007
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
3008
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3009
+
3010
+
3011
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
3012
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3013
+
3014
+
3015
+ Started GET "/missing_i18n/sw" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
3016
+ Processing by MissingI18n::LocalesController#show as HTML
3017
+ Parameters: {"id"=>"sw"}
3018
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
3019
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
3020
+
3021
+
3022
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
3023
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3024
+
3025
+
3026
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
3027
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3028
+
3029
+
3030
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
3031
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3032
+
3033
+
3034
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:24 +0200
3035
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3036
+
3037
+
3038
+ Started GET "/missing_i18n/th" for 127.0.0.1 at 2013-05-07 23:23:25 +0200
3039
+ Processing by MissingI18n::LocalesController#show as HTML
3040
+ Parameters: {"id"=>"th"}
3041
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
3042
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
3043
+
3044
+
3045
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:25 +0200
3046
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3047
+
3048
+
3049
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:25 +0200
3050
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3051
+
3052
+
3053
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:25 +0200
3054
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3055
+
3056
+
3057
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:25 +0200
3058
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3059
+
3060
+
3061
+ Started GET "/missing_i18n/tr" for 127.0.0.1 at 2013-05-07 23:23:26 +0200
3062
+ Processing by MissingI18n::LocalesController#show as HTML
3063
+ Parameters: {"id"=>"tr"}
3064
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.6ms)
3065
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
3066
+
3067
+
3068
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:26 +0200
3069
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3070
+
3071
+
3072
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:26 +0200
3073
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3074
+
3075
+
3076
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:26 +0200
3077
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3078
+
3079
+
3080
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:26 +0200
3081
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3082
+
3083
+
3084
+ Started GET "/missing_i18n/tl" for 127.0.0.1 at 2013-05-07 23:23:27 +0200
3085
+ Processing by MissingI18n::LocalesController#show as HTML
3086
+ Parameters: {"id"=>"tl"}
3087
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.6ms)
3088
+ Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
3089
+
3090
+
3091
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:27 +0200
3092
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3093
+
3094
+
3095
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:27 +0200
3096
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3097
+
3098
+
3099
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:27 +0200
3100
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3101
+
3102
+
3103
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:27 +0200
3104
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3105
+
3106
+
3107
+ Started GET "/missing_i18n/tr" for 127.0.0.1 at 2013-05-07 23:23:28 +0200
3108
+ Processing by MissingI18n::LocalesController#show as HTML
3109
+ Parameters: {"id"=>"tr"}
3110
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.8ms)
3111
+ Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
3112
+
3113
+
3114
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:28 +0200
3115
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3116
+
3117
+
3118
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:28 +0200
3119
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3120
+
3121
+
3122
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:28 +0200
3123
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3124
+
3125
+
3126
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:28 +0200
3127
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3128
+
3129
+
3130
+ Started GET "/missing_i18n/uk" for 127.0.0.1 at 2013-05-07 23:23:29 +0200
3131
+ Processing by MissingI18n::LocalesController#show as HTML
3132
+ Parameters: {"id"=>"uk"}
3133
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
3134
+ Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms)
3135
+
3136
+
3137
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:29 +0200
3138
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3139
+
3140
+
3141
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:29 +0200
3142
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3143
+
3144
+
3145
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:29 +0200
3146
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3147
+
3148
+
3149
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:29 +0200
3150
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3151
+
3152
+
3153
+ Started GET "/missing_i18n/uz" for 127.0.0.1 at 2013-05-07 23:23:30 +0200
3154
+ Processing by MissingI18n::LocalesController#show as HTML
3155
+ Parameters: {"id"=>"uz"}
3156
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
3157
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
3158
+
3159
+
3160
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:30 +0200
3161
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3162
+
3163
+
3164
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:30 +0200
3165
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3166
+
3167
+
3168
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:30 +0200
3169
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3170
+
3171
+
3172
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:30 +0200
3173
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3174
+
3175
+
3176
+ Started GET "/missing_i18n/vi" for 127.0.0.1 at 2013-05-07 23:23:31 +0200
3177
+ Processing by MissingI18n::LocalesController#show as HTML
3178
+ Parameters: {"id"=>"vi"}
3179
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (28.8ms)
3180
+ Completed 200 OK in 84ms (Views: 84.2ms | ActiveRecord: 0.0ms)
3181
+
3182
+
3183
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:31 +0200
3184
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3185
+
3186
+
3187
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:31 +0200
3188
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3189
+
3190
+
3191
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:31 +0200
3192
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3193
+
3194
+
3195
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:31 +0200
3196
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3197
+
3198
+
3199
+ Started GET "/missing_i18n/wo" for 127.0.0.1 at 2013-05-07 23:23:32 +0200
3200
+ Processing by MissingI18n::LocalesController#show as HTML
3201
+ Parameters: {"id"=>"wo"}
3202
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
3203
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
3204
+
3205
+
3206
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:32 +0200
3207
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3208
+
3209
+
3210
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:32 +0200
3211
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3212
+
3213
+
3214
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:32 +0200
3215
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3216
+
3217
+
3218
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:32 +0200
3219
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3220
+
3221
+
3222
+ Started GET "/missing_i18n/zh-CN" for 127.0.0.1 at 2013-05-07 23:23:33 +0200
3223
+ Processing by MissingI18n::LocalesController#show as HTML
3224
+ Parameters: {"id"=>"zh-CN"}
3225
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
3226
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
3227
+
3228
+
3229
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:33 +0200
3230
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3231
+
3232
+
3233
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:33 +0200
3234
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3235
+
3236
+
3237
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:33 +0200
3238
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3239
+
3240
+
3241
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:33 +0200
3242
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3243
+
3244
+
3245
+ Started GET "/missing_i18n/zh-TW" for 127.0.0.1 at 2013-05-07 23:23:35 +0200
3246
+ Processing by MissingI18n::LocalesController#show as HTML
3247
+ Parameters: {"id"=>"zh-TW"}
3248
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.2ms)
3249
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
3250
+
3251
+
3252
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:35 +0200
3253
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3254
+
3255
+
3256
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:35 +0200
3257
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3258
+
3259
+
3260
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:23:35 +0200
3261
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3262
+
3263
+
3264
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:23:35 +0200
3265
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3266
+ Connecting to database specified by database.yml
3267
+
3268
+
3269
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:25:10 +0200
3270
+ Processing by MissingI18n::LocalesController#index as HTML
3271
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (24.8ms)
3272
+ Completed 200 OK in 2073ms (Views: 89.9ms | ActiveRecord: 0.0ms)
3273
+
3274
+
3275
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:12 +0200
3276
+ Served asset /bootstrap.min.css - 304 Not Modified (3ms)
3277
+
3278
+
3279
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:12 +0200
3280
+ Served asset /missing_i18n/application.css - 304 Not Modified (4ms)
3281
+
3282
+
3283
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:12 +0200
3284
+ Served asset /missing_i18n/application.js - 304 Not Modified (4ms)
3285
+
3286
+
3287
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:12 +0200
3288
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (4ms)
3289
+
3290
+
3291
+ Started GET "/missing_i18n/ar" for 127.0.0.1 at 2013-05-07 23:25:12 +0200
3292
+ Processing by MissingI18n::LocalesController#show as HTML
3293
+ Parameters: {"id"=>"ar"}
3294
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2592.4ms)
3295
+ Completed 200 OK in 2643ms (Views: 2642.6ms | ActiveRecord: 0.0ms)
3296
+
3297
+
3298
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:15 +0200
3299
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3300
+
3301
+
3302
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:15 +0200
3303
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3304
+
3305
+
3306
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:15 +0200
3307
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3308
+
3309
+
3310
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:15 +0200
3311
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3312
+
3313
+
3314
+ Started GET "/missing_i18n/es-MX" for 127.0.0.1 at 2013-05-07 23:25:22 +0200
3315
+ Processing by MissingI18n::LocalesController#show as HTML
3316
+ Parameters: {"id"=>"es-MX"}
3317
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
3318
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
3319
+
3320
+
3321
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:22 +0200
3322
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3323
+
3324
+
3325
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:22 +0200
3326
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3327
+
3328
+
3329
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:22 +0200
3330
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3331
+
3332
+
3333
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:22 +0200
3334
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3335
+
3336
+
3337
+ Started GET "/missing_i18n/es-PE" for 127.0.0.1 at 2013-05-07 23:25:24 +0200
3338
+ Processing by MissingI18n::LocalesController#show as HTML
3339
+ Parameters: {"id"=>"es-PE"}
3340
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
3341
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
3342
+
3343
+
3344
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:24 +0200
3345
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3346
+
3347
+
3348
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:24 +0200
3349
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3350
+
3351
+
3352
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:24 +0200
3353
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3354
+
3355
+
3356
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:24 +0200
3357
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3358
+
3359
+
3360
+ Started GET "/missing_i18n/et" for 127.0.0.1 at 2013-05-07 23:25:26 +0200
3361
+ Processing by MissingI18n::LocalesController#show as HTML
3362
+ Parameters: {"id"=>"et"}
3363
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.5ms)
3364
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
3365
+
3366
+
3367
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:26 +0200
3368
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3369
+
3370
+
3371
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:26 +0200
3372
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3373
+
3374
+
3375
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:26 +0200
3376
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3377
+
3378
+
3379
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:26 +0200
3380
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3381
+
3382
+
3383
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:25:31 +0200
3384
+ Processing by MissingI18n::LocalesController#show as HTML
3385
+ Parameters: {"id"=>"en"}
3386
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.7ms)
3387
+ Completed 200 OK in 57ms (Views: 56.7ms | ActiveRecord: 0.0ms)
3388
+
3389
+
3390
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:31 +0200
3391
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3392
+
3393
+
3394
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:31 +0200
3395
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3396
+
3397
+
3398
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:31 +0200
3399
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3400
+
3401
+
3402
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:31 +0200
3403
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3404
+
3405
+
3406
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 23:25:36 +0200
3407
+ Processing by MissingI18n::LocalesController#show as HTML
3408
+ Parameters: {"id"=>"es"}
3409
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.3ms)
3410
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
3411
+
3412
+
3413
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:36 +0200
3414
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3415
+
3416
+
3417
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:36 +0200
3418
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3419
+
3420
+
3421
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:25:36 +0200
3422
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3423
+
3424
+
3425
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:25:36 +0200
3426
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3427
+ Connecting to database specified by database.yml
3428
+
3429
+
3430
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:27:13 +0200
3431
+ Processing by MissingI18n::LocalesController#index as HTML
3432
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (5.4ms)
3433
+ Completed 200 OK in 67ms (Views: 66.6ms | ActiveRecord: 0.0ms)
3434
+
3435
+
3436
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:27:13 +0200
3437
+ Served asset /bootstrap.min.css - 304 Not Modified (3ms)
3438
+
3439
+
3440
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:27:13 +0200
3441
+ Served asset /missing_i18n/application.css - 304 Not Modified (5ms)
3442
+
3443
+
3444
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:27:13 +0200
3445
+ Served asset /missing_i18n/application.js - 304 Not Modified (4ms)
3446
+
3447
+
3448
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:27:13 +0200
3449
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (3ms)
3450
+
3451
+
3452
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:27:13 +0200
3453
+ Processing by MissingI18n::LocalesController#show as HTML
3454
+ Parameters: {"id"=>"en"}
3455
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (87.9ms)
3456
+ Completed 200 OK in 134ms (Views: 133.7ms | ActiveRecord: 0.0ms)
3457
+
3458
+
3459
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:27:14 +0200
3460
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3461
+
3462
+
3463
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:27:14 +0200
3464
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3465
+
3466
+
3467
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:27:14 +0200
3468
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3469
+
3470
+
3471
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:27:14 +0200
3472
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3473
+
3474
+
3475
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 23:27:18 +0200
3476
+ Processing by MissingI18n::LocalesController#show as HTML
3477
+ Parameters: {"id"=>"es"}
3478
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
3479
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
3480
+
3481
+
3482
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:27:18 +0200
3483
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3484
+
3485
+
3486
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:27:18 +0200
3487
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3488
+
3489
+
3490
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:27:18 +0200
3491
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3492
+
3493
+
3494
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:27:18 +0200
3495
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3496
+
3497
+
3498
+ Started GET "/" for 127.0.0.1 at 2013-05-07 23:28:49 +0200
3499
+
3500
+
3501
+ Started GET "/missing_i18n" for 127.0.0.1 at 2013-05-07 23:28:49 +0200
3502
+ Processing by MissingI18n::LocalesController#index as HTML
3503
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (1.3ms)
3504
+ Completed 200 OK in 37ms (Views: 36.4ms | ActiveRecord: 0.0ms)
3505
+
3506
+
3507
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:28:50 +0200
3508
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3509
+
3510
+
3511
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:28:50 +0200
3512
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3513
+
3514
+
3515
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:28:50 +0200
3516
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3517
+
3518
+
3519
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:28:50 +0200
3520
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3521
+
3522
+
3523
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:28:50 +0200
3524
+ Processing by MissingI18n::LocalesController#show as HTML
3525
+ Parameters: {"id"=>"en"}
3526
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.2ms)
3527
+ Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms)
3528
+
3529
+
3530
+ Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-05-07 23:28:50 +0200
3531
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (3ms)
3532
+
3533
+
3534
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:28:50 +0200
3535
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3536
+
3537
+
3538
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:28:50 +0200
3539
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3540
+
3541
+
3542
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:28:50 +0200
3543
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3544
+
3545
+
3546
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3547
+ Processing by MissingI18n::LocalesController#index as HTML
3548
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (1.6ms)
3549
+ Completed 200 OK in 39ms (Views: 38.8ms | ActiveRecord: 0.0ms)
3550
+
3551
+
3552
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3553
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3554
+
3555
+
3556
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3557
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3558
+
3559
+
3560
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3561
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3562
+
3563
+
3564
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3565
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3566
+
3567
+
3568
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3569
+ Processing by MissingI18n::LocalesController#show as HTML
3570
+ Parameters: {"id"=>"en"}
3571
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.0ms)
3572
+ Completed 200 OK in 27ms (Views: 27.0ms | ActiveRecord: 0.0ms)
3573
+
3574
+
3575
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3576
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3577
+
3578
+
3579
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3580
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3581
+
3582
+
3583
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3584
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3585
+
3586
+
3587
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:39:51 +0200
3588
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3589
+
3590
+
3591
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 23:39:53 +0200
3592
+ Processing by MissingI18n::LocalesController#show as HTML
3593
+ Parameters: {"id"=>"es"}
3594
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.3ms)
3595
+ Completed 200 OK in 38ms (Views: 37.9ms | ActiveRecord: 0.0ms)
3596
+
3597
+
3598
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:39:53 +0200
3599
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3600
+
3601
+
3602
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:39:53 +0200
3603
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3604
+
3605
+
3606
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:39:53 +0200
3607
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3608
+
3609
+
3610
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:39:53 +0200
3611
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3612
+
3613
+
3614
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:39:59 +0200
3615
+ Processing by MissingI18n::LocalesController#show as HTML
3616
+ Parameters: {"id"=>"en"}
3617
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.0ms)
3618
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
3619
+
3620
+
3621
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:39:59 +0200
3622
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3623
+
3624
+
3625
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:39:59 +0200
3626
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3627
+
3628
+
3629
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:39:59 +0200
3630
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3631
+
3632
+
3633
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:39:59 +0200
3634
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3635
+
3636
+
3637
+ Started GET "/missing_i18n/es" for 127.0.0.1 at 2013-05-07 23:40:00 +0200
3638
+ Processing by MissingI18n::LocalesController#show as HTML
3639
+ Parameters: {"id"=>"es"}
3640
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (2.4ms)
3641
+ Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.0ms)
3642
+
3643
+
3644
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:40:00 +0200
3645
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3646
+
3647
+
3648
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:40:00 +0200
3649
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3650
+
3651
+
3652
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:40:00 +0200
3653
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3654
+
3655
+
3656
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:40:00 +0200
3657
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3658
+
3659
+
3660
+ Started GET "/missing_i18n/" for 127.0.0.1 at 2013-05-07 23:40:57 +0200
3661
+ Processing by MissingI18n::LocalesController#index as HTML
3662
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/index.html.erb within layouts/missing_i18n/application (1.3ms)
3663
+ Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms)
3664
+
3665
+
3666
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:40:57 +0200
3667
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3668
+
3669
+
3670
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:40:57 +0200
3671
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3672
+
3673
+
3674
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:40:57 +0200
3675
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3676
+
3677
+
3678
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:40:57 +0200
3679
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)
3680
+
3681
+
3682
+ Started GET "/missing_i18n/en" for 127.0.0.1 at 2013-05-07 23:40:57 +0200
3683
+ Processing by MissingI18n::LocalesController#show as HTML
3684
+ Parameters: {"id"=>"en"}
3685
+ Rendered /Users/kikito/programming/rails/missing_i18n/app/views/missing_i18n/locales/show.html.erb within layouts/missing_i18n/application (3.7ms)
3686
+ Completed 200 OK in 53ms (Views: 52.7ms | ActiveRecord: 0.0ms)
3687
+
3688
+
3689
+ Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-05-07 23:40:58 +0200
3690
+ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
3691
+
3692
+
3693
+ Started GET "/assets/missing_i18n/application.css?body=1" for 127.0.0.1 at 2013-05-07 23:40:58 +0200
3694
+ Served asset /missing_i18n/application.css - 304 Not Modified (0ms)
3695
+
3696
+
3697
+ Started GET "/assets/missing_i18n/application.js?body=1" for 127.0.0.1 at 2013-05-07 23:40:58 +0200
3698
+ Served asset /missing_i18n/application.js - 304 Not Modified (0ms)
3699
+
3700
+
3701
+ Started GET "/assets/jquery-1.8.3.min.js?body=1" for 127.0.0.1 at 2013-05-07 23:40:58 +0200
3702
+ Served asset /jquery-1.8.3.min.js - 304 Not Modified (0ms)