translation_handler 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. checksums.yaml +7 -0
  2. data/app/controllers/translation_handler/translations_controller.rb +8 -1
  3. data/lib/translation_handler/version.rb +1 -1
  4. data/test/dummy/app/views/translation_handler/translations/index.html.erb +4 -1
  5. data/test/dummy/app/views/translation_handler/translations/new.html.erb +2 -2
  6. data/test/dummy/config/environments/development.rb +1 -1
  7. data/test/dummy/config/locales/en.yml +12 -2
  8. data/test/dummy/log/development.log +501 -2180
  9. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  10. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  11. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  12. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  13. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  14. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  15. metadata +82 -110
  16. data/test/dummy/config/locales/abdul.barek.yml +0 -3
  17. data/test/dummy/config/locales/asas.yml +0 -7
  18. data/test/dummy/config/locales/barek2k2.yml +0 -7
  19. data/test/dummy/config/locales/devise.en.yml +0 -72
  20. data/test/dummy/config/locales/simple_form.en.yml +0 -26
  21. data/test/dummy/db/test.sqlite3 +0 -0
  22. data/test/dummy/log/test.log +0 -100
  23. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  24. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  25. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  26. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  27. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  28. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0fae86431202f49061fd4bfda5c413ef3947e6b0
4
+ data.tar.gz: fad7f62ec9825f215637fd78c0ca83dee60c83ab
5
+ SHA512:
6
+ metadata.gz: 03dcaeed65a8c8b8e2b0e7467024be7000aeb97688f0ace2584eb64fca4ff368bb3fcfd548c9be12f7ef6de87e0ff8a69efbc5e4c50d3dc1e2696fa368b7f2ad
7
+ data.tar.gz: 0ba5bf34e2104c39eb5df44493995121aaa48b56506216dd40c4c5e376a01820ff6a1ad7ba18a35f2de91ad1a8c29e3e9a8ccc2de49b1b498d239912df7b6874
@@ -14,7 +14,13 @@ module TranslationHandler
14
14
  out += "" + make_html(value, :indent_level => indent_level + 2) + " " * (indent_level + 2) + "</li>"
15
15
  else
16
16
  $element += 1
17
- out += "<input type='text' name='field_#{$element}' value='#{value}'></input></li>"
17
+ if value.length > 150
18
+ out += "<textarea class='translation_field' name='field_#{$element}'>#{value}</textarea></li>"
19
+ else
20
+ out += "<input class='translation_field' type='text' name='field_#{$element}' value='#{value}'></input></li>"
21
+ end
22
+
23
+
18
24
  end
19
25
  end
20
26
  out += " " * indent_level + "</ul>"
@@ -38,6 +44,7 @@ module TranslationHandler
38
44
  base_locale_file = YAML.load_file(Rails.root + "config/locales/#{params[:id]}.yml").to_hash
39
45
  $element = 0
40
46
  prepared_yaml = prepare_yml_hash(base_locale_file).to_yaml
47
+ #raise prepared_yaml.inspect
41
48
  File.open(Rails.root + "config/locales/#{params[:id]}.yml", "w") do |f|
42
49
  f << prepared_yaml
43
50
  end
@@ -1,3 +1,3 @@
1
1
  module TranslationHandler
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -1,7 +1,10 @@
1
+ <%= kolas_url %>
1
2
  <ul>
2
3
  <% @available_locales.each do |locale| %>
3
4
  <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
4
5
  <% end %>
5
6
  </ul>
6
7
 
7
- <%= link_to 'Create New Language', new_translation_handler_translation_path %>
8
+ <%= link_to 'Create New Language', new_translation_handler_translation_path %>
9
+
10
+ asfjbskjfbsdf
@@ -1,4 +1,4 @@
1
1
  <%= form_for '', :url => translation_handler_translations_url, :html => {:method => :post} do |f| %>
2
2
  <%= text_field_tag 'language' %>
3
- .yml <%= f.submit 'Create' %>
4
- <% end %>
3
+ <%= f.submit 'Create' %>
4
+ <% end %>
@@ -14,7 +14,7 @@ Dummy::Application.configure do
14
14
  config.action_controller.perform_caching = false
15
15
 
16
16
  # Don't care if the mailer can't send.
17
- #config.action_mailer.raise_delivery_errors = false
17
+ config.action_mailer.raise_delivery_errors = false
18
18
 
19
19
  # Print deprecation notices to the Rails logger.
20
20
  config.active_support.deprecation = :log
@@ -1,7 +1,17 @@
1
1
  ---
2
2
  en:
3
- hello: hello test
3
+ hello: hello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello
4
+ test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222
5
+ asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello
6
+ test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222
7
+ asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello
8
+ test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222
9
+ asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello
10
+ test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222
11
+ asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello
12
+ test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdf
4
13
  user:
5
14
  attributes:
6
15
  email: def@yahoo.com
7
- name: last first
16
+ name: '["last", "first"]'
17
+ barek: '1235.022'
@@ -1,2459 +1,780 @@
1
1
 
2
2
 
3
- Started GET "/" for 127.0.0.1 at 2014-01-13 20:31:59 +0600
3
+ Started GET "/" for 127.0.0.1 at 2014-01-21 14:32:05 +0600
4
4
  Processing by Rails::WelcomeController#index as HTML
5
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (11.6ms)
6
- Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms)
7
-
8
-
9
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:32:05 +0600
10
-
11
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
12
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
14
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
15
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
16
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
17
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
18
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
19
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
20
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
23
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
24
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
25
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
26
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
27
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
28
- railties (4.0.2) lib/rails/application.rb:97:in `call'
29
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
30
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
31
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
32
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
33
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
34
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
35
-
36
-
37
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
38
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
39
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (160.3ms)
40
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (243.8ms)
41
-
42
-
43
- Started GET "/translations" for 127.0.0.1 at 2014-01-13 20:32:12 +0600
44
-
45
- ActionController::RoutingError (uninitialized constant TranslationsController):
46
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `const_get'
47
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `block in constantize'
48
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
49
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
50
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
51
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
52
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
53
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
54
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
55
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
56
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
57
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
58
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
59
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
60
- rack (1.5.2) lib/rack/head.rb:11:in `call'
61
- actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
62
- actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
63
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
64
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
65
- actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
66
- activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
67
- activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
68
- activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
69
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
70
- activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1032124077__call__callbacks'
71
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
72
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
73
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
74
- actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
75
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
76
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
77
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
78
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
79
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
80
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
81
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
82
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
83
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
84
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
85
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
86
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
87
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
88
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
89
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
90
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
91
- railties (4.0.2) lib/rails/application.rb:97:in `call'
92
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
93
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
94
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
95
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
96
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
97
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
98
-
99
-
100
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
101
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
102
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
103
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (26.3ms)
104
-
105
-
106
- Started GET "/translations" for 127.0.0.1 at 2014-01-13 20:33:07 +0600
107
-
108
- ActionController::RoutingError (uninitialized constant TranslationsController):
109
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `const_get'
110
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `block in constantize'
111
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
112
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
113
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
114
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
115
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
116
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
117
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
118
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
119
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
120
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
121
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
122
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
123
- rack (1.5.2) lib/rack/head.rb:11:in `call'
124
- actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
125
- actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
126
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
127
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
128
- actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
129
- activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
130
- activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
131
- activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
132
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
133
- activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1032124077__call__callbacks'
134
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
135
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
136
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
137
- actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
138
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
139
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
140
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
141
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
142
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
143
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
144
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
145
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
146
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
147
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
148
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
149
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
150
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
151
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
152
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
153
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
154
- railties (4.0.2) lib/rails/application.rb:97:in `call'
155
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
156
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
157
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
158
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
159
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
160
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
161
-
162
-
163
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
164
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
165
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
166
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (25.6ms)
167
-
168
-
169
- Started GET "/translations" for 127.0.0.1 at 2014-01-13 20:33:08 +0600
170
-
171
- ActionController::RoutingError (uninitialized constant TranslationsController):
172
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `const_get'
173
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `block in constantize'
174
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
175
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
176
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
177
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
178
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
179
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
180
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
181
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
182
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
183
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
184
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
185
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
186
- rack (1.5.2) lib/rack/head.rb:11:in `call'
187
- actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
188
- actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
189
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
190
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
191
- actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
192
- activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
193
- activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
194
- activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
195
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
196
- activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1032124077__call__callbacks'
197
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
198
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
199
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
200
- actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
201
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
202
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
203
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
204
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
205
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
206
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
207
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
208
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
209
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
210
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
211
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
212
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
213
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
214
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
215
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
216
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
217
- railties (4.0.2) lib/rails/application.rb:97:in `call'
218
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
219
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
220
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
221
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
222
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
223
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
224
-
225
-
226
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
227
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms)
228
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms)
229
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (27.1ms)
230
-
231
-
232
- Started GET "/translations" for 127.0.0.1 at 2014-01-13 20:33:09 +0600
233
-
234
- ActionController::RoutingError (uninitialized constant TranslationsController):
235
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `const_get'
236
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `block in constantize'
237
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
238
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
239
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
240
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
241
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
242
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
243
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
244
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
245
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
246
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
247
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
248
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
249
- rack (1.5.2) lib/rack/head.rb:11:in `call'
250
- actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
251
- actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
252
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
253
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
254
- actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
255
- activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
256
- activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
257
- activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
258
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
259
- activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1032124077__call__callbacks'
260
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
261
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
262
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
263
- actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
264
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
265
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
266
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
267
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
268
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
269
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
270
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
271
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
272
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
273
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
274
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
275
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
276
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
277
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
278
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
279
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
280
- railties (4.0.2) lib/rails/application.rb:97:in `call'
281
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
282
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
283
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
284
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
285
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
286
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
287
-
288
-
289
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
290
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
291
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
292
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (27.1ms)
293
-
294
-
295
- Started GET "/translations" for 127.0.0.1 at 2014-01-13 20:33:09 +0600
296
-
297
- ActionController::RoutingError (uninitialized constant TranslationsController):
298
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `const_get'
299
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:226:in `block in constantize'
300
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
301
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
302
- activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
303
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
304
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
305
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
306
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
307
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
308
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
309
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
310
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
311
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
312
- rack (1.5.2) lib/rack/head.rb:11:in `call'
313
- actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
314
- actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
315
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
316
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
317
- actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
318
- activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
319
- activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
320
- activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
321
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
322
- activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1032124077__call__callbacks'
323
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
324
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
325
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
326
- actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
327
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
328
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
329
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
330
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
331
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
332
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
333
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
334
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
335
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
336
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
337
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
338
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
339
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
340
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
341
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
342
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
343
- railties (4.0.2) lib/rails/application.rb:97:in `call'
344
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
345
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
346
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
347
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
348
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
349
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
350
-
351
-
352
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
353
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
354
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
355
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (28.5ms)
356
-
357
-
358
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:33:14 +0600
359
-
360
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
361
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
362
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
363
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
364
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
365
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
366
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
367
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
368
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
369
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
370
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
371
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
372
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
373
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
374
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
375
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
376
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
377
- railties (4.0.2) lib/rails/application.rb:97:in `call'
378
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
379
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
380
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
381
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
382
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
383
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
384
-
385
-
386
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
387
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
388
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
389
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (43.5ms)
390
-
391
-
392
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:33:16 +0600
393
-
394
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
395
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
396
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
397
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
398
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
399
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
400
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
401
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
402
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
403
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
404
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
405
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
406
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
407
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
408
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
409
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
410
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
411
- railties (4.0.2) lib/rails/application.rb:97:in `call'
412
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
413
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
414
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
415
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
416
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
417
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
418
-
419
-
420
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
421
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
422
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms)
423
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (25.3ms)
424
-
425
-
426
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:33:16 +0600
427
-
428
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
429
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
430
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
431
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
432
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
433
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
434
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
435
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
436
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
437
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
438
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
439
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
440
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
441
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
442
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
443
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
444
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
445
- railties (4.0.2) lib/rails/application.rb:97:in `call'
446
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
447
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
448
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
449
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
450
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
451
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
452
-
453
-
454
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
455
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
456
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms)
457
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (25.9ms)
458
-
459
-
460
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:35:18 +0600
461
-
462
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
463
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
464
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
465
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
466
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
467
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
468
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
469
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
470
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
471
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
472
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
473
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
474
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
475
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
476
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
477
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
478
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
479
- railties (4.0.2) lib/rails/application.rb:97:in `call'
480
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
481
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
482
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
483
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
484
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
485
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
486
-
487
-
488
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
489
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
490
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (22.8ms)
491
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (45.1ms)
492
-
493
-
494
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:35:29 +0600
495
-
496
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
497
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
498
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
499
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
500
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
501
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
502
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
503
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
504
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
505
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
506
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
507
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
508
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
509
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
510
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
511
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
512
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
513
- railties (4.0.2) lib/rails/application.rb:97:in `call'
514
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
515
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
516
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
517
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
518
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
519
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
520
-
521
-
522
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
523
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
524
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.3ms)
525
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (29.3ms)
526
-
527
-
528
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:36:02 +0600
529
- Processing by TranslationHandler::TranslationsController#index as HTML
530
- Rendered /home/bilash/projects/gemmm/translation_handler/app/views/translation_handler/translations/index.html.erb (30.8ms)
531
- Completed 500 Internal Server Error in 36ms
532
-
533
- ActionView::Template::Error (undefined method `edit_translation_path' for #<#<Class:0x8f955d0>:0x8f94f2c>):
534
- 1: <ul>
535
- 2: <% @available_locales.each do |locale| %>
536
- 3: <li><%= link_to locale, edit_translation_path(:id => locale) %></li>
537
- 4: <% end %>
538
- 5: </ul>
539
- 6:
540
- /home/bilash/projects/gemmm/translation_handler/app/views/translation_handler/translations/index.html.erb:3:in `block in __home_bilash_projects_gemmm_translation_handler_app_views_translation_handler_translations_index_html_erb__657050204_75291520'
541
- /home/bilash/projects/gemmm/translation_handler/app/views/translation_handler/translations/index.html.erb:2:in `each'
542
- /home/bilash/projects/gemmm/translation_handler/app/views/translation_handler/translations/index.html.erb:2:in `__home_bilash_projects_gemmm_translation_handler_app_views_translation_handler_translations_index_html_erb__657050204_75291520'
543
- actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
544
- activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
545
- actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
546
- actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
547
- actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
548
- activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
549
- activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
550
- activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
551
- actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
552
- actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
553
- actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
554
- actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
555
- actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
556
- actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
557
- actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
558
- actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
559
- actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
560
- actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
561
- actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
562
- actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
563
- actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
564
- actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
565
- actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
566
- activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
567
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
568
- activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
569
- actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
570
- actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
571
- activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
572
- actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
573
- actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
574
- actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
575
- actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
576
- actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
577
- actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
578
- activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__317319015__process_action__callbacks'
579
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
580
- actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
581
- actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
582
- actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
583
- activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
584
- activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
585
- activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
586
- actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
587
- actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
588
- activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
589
- actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
590
- actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
591
- actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
592
- actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
593
- actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
594
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
595
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
596
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
597
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
598
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
599
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
600
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
601
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
602
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
603
- rack (1.5.2) lib/rack/head.rb:11:in `call'
604
- actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
605
- actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
606
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
607
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
608
- actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
609
- activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
610
- activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
611
- activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
612
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
613
- activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__1050467438__call__callbacks'
614
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
615
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
616
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
617
- actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
618
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
619
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
620
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
621
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
622
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
623
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
624
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
625
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
626
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
627
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
628
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
629
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
630
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
631
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
632
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
633
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
634
- railties (4.0.2) lib/rails/application.rb:97:in `call'
635
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
636
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
637
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
638
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
639
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
640
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
641
-
642
-
643
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
644
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (46.8ms)
645
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (59.2ms)
646
-
647
-
648
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:37:25 +0600
649
- Processing by TranslationHandler::TranslationsController#index as HTML
650
- Rendered /home/bilash/projects/gemmm/translation_handler/app/views/translation_handler/translations/index.html.erb (1.2ms)
651
- Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
652
-
653
-
654
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:38:33 +0600
655
- Processing by TranslationHandler::TranslationsController#index as HTML
656
- Rendered /home/bilash/projects/gemmm/translation_handler/app/views/translation_handler/translations/index.html.erb (1.4ms)
657
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
658
-
659
-
660
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:43:50 +0600
661
- Processing by TranslationHandler::TranslationsController#index as HTML
662
- Rendered translation_handler/translations/index.html.erb (2.0ms)
663
- Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
664
-
665
-
666
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:43:57 +0600
667
- Processing by TranslationHandler::TranslationsController#index as HTML
668
- Rendered translation_handler/translations/index.html.erb (0.6ms)
669
- Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
670
-
671
-
672
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:44:45 +0600
673
- Processing by TranslationHandler::TranslationsController#index as HTML
674
- Rendered translation_handler/translations/index.html.erb (1.4ms)
675
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
676
-
677
-
678
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-13 20:45:21 +0600
679
- Processing by TranslationHandler::TranslationsController#index as HTML
680
- Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
681
- Completed 200 OK in 52ms (Views: 51.5ms | ActiveRecord: 0.0ms)
682
-
683
-
684
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-13 20:45:22 +0600
685
-
686
-
687
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-13 20:45:22 +0600
688
-
689
-
690
- Started GET "/" for 127.0.0.1 at 2014-01-14 01:20:31 +0600
691
-
692
- Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile.):
693
- activerecord (4.0.2) lib/active_record/connection_adapters/connection_specification.rb:58:in `rescue in resolve_hash_connection'
694
- activerecord (4.0.2) lib/active_record/connection_adapters/connection_specification.rb:55:in `resolve_hash_connection'
695
- activerecord (4.0.2) lib/active_record/connection_adapters/connection_specification.rb:46:in `resolve_string_connection'
696
- activerecord (4.0.2) lib/active_record/connection_adapters/connection_specification.rb:30:in `spec'
697
- activerecord (4.0.2) lib/active_record/connection_handling.rb:39:in `establish_connection'
698
- activerecord (4.0.2) lib/active_record/railtie.rb:176:in `block (2 levels) in <class:Railtie>'
699
- activesupport (4.0.2) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
700
- activesupport (4.0.2) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
701
- activesupport (4.0.2) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
702
- activesupport (4.0.2) lib/active_support/lazy_load_hooks.rb:44:in `each'
703
- activesupport (4.0.2) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
704
- activerecord (4.0.2) lib/active_record/base.rb:322:in `<module:ActiveRecord>'
705
- activerecord (4.0.2) lib/active_record/base.rb:22:in `<top (required)>'
706
- activerecord (4.0.2) lib/active_record/query_cache.rb:50:in `restore_query_cache_settings'
707
- activerecord (4.0.2) lib/active_record/query_cache.rb:43:in `rescue in call'
708
- activerecord (4.0.2) lib/active_record/query_cache.rb:32:in `call'
709
- activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
710
- activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
711
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
712
- activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__930905397__call__callbacks'
713
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
714
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
715
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
716
- actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
717
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
718
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
719
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
720
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
721
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
722
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
723
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
724
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
725
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
726
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
727
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
728
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
729
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
730
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
731
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
732
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
733
- railties (4.0.2) lib/rails/application.rb:97:in `call'
734
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
735
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
736
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
737
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
738
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
739
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
740
-
741
-
742
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
743
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
744
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
745
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (34.2ms)
746
-
747
-
748
- Started GET "/" for 127.0.0.1 at 2014-01-14 01:23:13 +0600
749
- Processing by Rails::WelcomeController#index as HTML
750
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (1.9ms)
751
- Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
752
-
753
-
754
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:23:20 +0600
755
- Processing by TranslationHandler::TranslationsController#index as HTML
756
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.6ms)
757
- Completed 200 OK in 52ms (Views: 51.8ms | ActiveRecord: 0.0ms)
758
-
759
-
760
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:20 +0600
761
-
762
-
763
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:23:20 +0600
764
-
765
-
766
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:23:22 +0600
767
- Processing by TranslationHandler::TranslationsController#new as HTML
768
- Rendered translation_handler/translations/new.html.erb within layouts/application (2.1ms)
769
- Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
770
-
771
-
772
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:22 +0600
773
-
774
-
775
- Started POST "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:23:27 +0600
776
- Processing by TranslationHandler::TranslationsController#create as HTML
777
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "language"=>"an.dy", "commit"=>"Create"}
778
- Redirected to http://localhost:3000/translation_handler/translations
779
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
780
-
781
-
782
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:23:27 +0600
783
- Processing by TranslationHandler::TranslationsController#index as HTML
784
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.5ms)
785
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
786
-
787
-
788
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:27 +0600
789
-
790
-
791
- Started GET "/translation_handler/translations/an.dy/edit" for 127.0.0.1 at 2014-01-14 01:23:29 +0600
792
- Processing by TranslationHandler::TranslationsController#edit as HTML
793
- Parameters: {"id"=>"an.dy"}
794
- Rendered translation_handler/translations/edit.html.erb within layouts/application (4.3ms)
795
- Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.0ms)
796
-
797
-
798
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:29 +0600
799
-
800
-
801
- Started PUT "/translation_handler/translations/an.dy" for 127.0.0.1 at 2014-01-14 01:23:32 +0600
802
- Processing by TranslationHandler::TranslationsController#update as HTML
803
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"asdasd", "id"=>"an.dy", "commit"=>"Update"}
804
- Redirected to http://localhost:3000/translation_handler/translations
805
- Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
806
-
807
-
808
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:23:32 +0600
809
- Processing by TranslationHandler::TranslationsController#index as HTML
810
- Rendered translation_handler/translations/index.html.erb within layouts/application (0.9ms)
811
- Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
812
-
813
-
814
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:32 +0600
815
-
816
-
817
- Started GET "/translation_handler/translations/an.dy/edit" for 127.0.0.1 at 2014-01-14 01:23:33 +0600
818
- Processing by TranslationHandler::TranslationsController#edit as HTML
819
- Parameters: {"id"=>"an.dy"}
820
- Rendered translation_handler/translations/edit.html.erb within layouts/application (4.2ms)
821
- Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
822
-
823
-
824
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:33 +0600
825
-
826
-
827
- Started PUT "/translation_handler/translations/an.dy" for 127.0.0.1 at 2014-01-14 01:23:34 +0600
828
- Processing by TranslationHandler::TranslationsController#update as HTML
829
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"asdasd", "id"=>"an.dy", "commit"=>"Update"}
830
- Redirected to http://localhost:3000/translation_handler/translations
831
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
832
-
833
-
834
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:23:34 +0600
835
- Processing by TranslationHandler::TranslationsController#index as HTML
836
- Rendered translation_handler/translations/index.html.erb within layouts/application (0.9ms)
837
- Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
838
-
839
-
840
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:34 +0600
841
-
842
-
843
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:23:36 +0600
844
- Processing by TranslationHandler::TranslationsController#new as HTML
845
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.3ms)
846
- Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
847
-
848
-
849
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:36 +0600
850
-
851
-
852
- Started POST "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:23:42 +0600
853
- Processing by TranslationHandler::TranslationsController#create as HTML
854
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "language"=>"devise.en", "commit"=>"Create"}
855
- Redirected to http://localhost:3000/translation_handler/translations
856
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
857
-
858
-
859
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:23:42 +0600
860
- Processing by TranslationHandler::TranslationsController#index as HTML
861
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.4ms)
862
- Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
863
-
864
-
865
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:42 +0600
866
-
867
-
868
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:23:44 +0600
869
- Processing by TranslationHandler::TranslationsController#edit as HTML
870
- Parameters: {"id"=>"devise.en"}
871
- Rendered translation_handler/translations/edit.html.erb within layouts/application (3.8ms)
872
- Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
873
-
874
-
875
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:23:44 +0600
876
-
877
-
878
- Started GET "/translation_handler/translations/devise.en" for 127.0.0.1 at 2014-01-14 01:26:35 +0600
879
-
880
- AbstractController::ActionNotFound (The action 'show' could not be found for TranslationHandler::TranslationsController):
881
- actionpack (4.0.2) lib/abstract_controller/base.rb:131:in `process'
882
- actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
883
- actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
884
- actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
885
- actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
886
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
887
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
888
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
889
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
890
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
891
- actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
892
- actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
893
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
894
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
895
- rack (1.5.2) lib/rack/head.rb:11:in `call'
896
- actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
897
- actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
898
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
899
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
900
- actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
901
- activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
902
- activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
903
- activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
904
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
905
- activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__431910989__call__callbacks'
906
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
907
- actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
908
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
909
- actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
910
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
911
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
912
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
913
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
914
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
915
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
916
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
917
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
918
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
919
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
920
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
921
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
922
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
923
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
924
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
925
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
926
- railties (4.0.2) lib/rails/application.rb:97:in `call'
927
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
928
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
929
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
930
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
931
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
932
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
933
-
934
-
935
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (3.5ms)
936
-
937
-
938
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:26:41 +0600
939
- Processing by TranslationHandler::TranslationsController#index as HTML
940
- Rendered translation_handler/translations/index.html.erb within layouts/application (2.1ms)
941
- Completed 200 OK in 53ms (Views: 52.2ms | ActiveRecord: 0.0ms)
942
-
943
-
944
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:26:41 +0600
945
-
946
-
947
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:26:43 +0600
948
- Processing by TranslationHandler::TranslationsController#edit as HTML
949
- Parameters: {"id"=>"devise.en"}
950
- Rendered translation_handler/translations/edit.html.erb within layouts/application (2.5ms)
951
- Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
952
-
953
-
954
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:26:43 +0600
955
-
956
-
957
- Started PUT "/translation_handler/translations/devise.en" for 127.0.0.1 at 2014-01-14 01:26:46 +0600
958
- Processing by TranslationHandler::TranslationsController#update as HTML
959
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"qweqwe", "id"=>"devise.en", "commit"=>"Update"}
960
- Redirected to http://localhost:3000/translation_handler/translations
961
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
962
-
963
-
964
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:26:46 +0600
965
- Processing by TranslationHandler::TranslationsController#index as HTML
966
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.3ms)
967
- Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
968
-
969
-
970
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:26:46 +0600
971
-
972
-
973
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:26:48 +0600
974
- Processing by TranslationHandler::TranslationsController#edit as HTML
975
- Parameters: {"id"=>"devise.en"}
976
- Rendered translation_handler/translations/edit.html.erb within layouts/application (2.0ms)
977
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
978
-
979
-
980
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:26:48 +0600
981
-
982
-
983
- Started PUT "/translation_handler/translations/devise.en" for 127.0.0.1 at 2014-01-14 01:26:52 +0600
984
- Processing by TranslationHandler::TranslationsController#update as HTML
985
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"aaaaaaaaaa", "id"=>"devise.en", "commit"=>"Update"}
986
- Redirected to http://localhost:3000/translation_handler/translations
987
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
988
-
989
-
990
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:26:52 +0600
991
- Processing by TranslationHandler::TranslationsController#index as HTML
992
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.4ms)
993
- Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
994
-
995
-
996
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:26:52 +0600
997
-
998
-
999
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:26:54 +0600
1000
- Processing by TranslationHandler::TranslationsController#edit as HTML
1001
- Parameters: {"id"=>"devise.en"}
1002
- Rendered translation_handler/translations/edit.html.erb within layouts/application (1.8ms)
1003
- Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
1004
-
1005
-
1006
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:26:54 +0600
1007
-
1008
-
1009
- Started PUT "/translation_handler/translations/devise.en" for 127.0.0.1 at 2014-01-14 01:26:55 +0600
1010
- Processing by TranslationHandler::TranslationsController#update as HTML
1011
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"aaaaaaaaaa", "id"=>"devise.en", "commit"=>"Update"}
1012
- Redirected to http://localhost:3000/translation_handler/translations
1013
- Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
1014
-
1015
-
1016
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:26:55 +0600
1017
- Processing by TranslationHandler::TranslationsController#index as HTML
1018
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.3ms)
1019
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1020
-
1021
-
1022
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:26:55 +0600
1023
-
1024
-
1025
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:26:57 +0600
1026
- Processing by TranslationHandler::TranslationsController#new as HTML
1027
- Rendered translation_handler/translations/new.html.erb within layouts/application (3.6ms)
1028
- Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
1029
-
1030
-
1031
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:26:57 +0600
1032
-
1033
-
1034
- Started POST "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:27:02 +0600
1035
- Processing by TranslationHandler::TranslationsController#create as HTML
1036
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "language"=>"baal.chaal", "commit"=>"Create"}
1037
- Redirected to http://localhost:3000/translation_handler/translations
1038
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1039
-
1040
-
1041
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:27:02 +0600
1042
- Processing by TranslationHandler::TranslationsController#index as HTML
1043
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.4ms)
1044
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
1045
-
1046
-
1047
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:27:02 +0600
1048
-
1049
-
1050
- Started GET "/translation_handler/translations/baal.chaal/edit" for 127.0.0.1 at 2014-01-14 01:27:04 +0600
1051
- Processing by TranslationHandler::TranslationsController#edit as HTML
1052
- Parameters: {"id"=>"baal.chaal"}
1053
- Rendered translation_handler/translations/edit.html.erb within layouts/application (1.8ms)
1054
- Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
1055
-
1056
-
1057
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:27:04 +0600
1058
-
1059
-
1060
- Started GET "/translation_handler/translations/baal.chaal/edit" for 127.0.0.1 at 2014-01-14 01:27:08 +0600
1061
- Processing by TranslationHandler::TranslationsController#edit as HTML
1062
- Parameters: {"id"=>"baal.chaal"}
1063
- Rendered translation_handler/translations/edit.html.erb within layouts/application (2.9ms)
1064
- Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.0ms)
1065
-
1066
-
1067
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:27:08 +0600
1068
-
1069
-
1070
- Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-14 01:27:11 +0600
1071
- Processing by TranslationHandler::TranslationsController#edit as HTML
1072
- Parameters: {"id"=>"en"}
1073
- Rendered translation_handler/translations/edit.html.erb within layouts/application (2.0ms)
1074
- Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1075
-
1076
-
1077
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:27:11 +0600
1078
-
1079
-
1080
- Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-14 01:30:07 +0600
1081
- Processing by TranslationHandler::TranslationsController#update as HTML
1082
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"hello test", "field_2"=>"def@yahoo.com", "field_3"=>"last first", "id"=>"en", "commit"=>"Update"}
1083
- Redirected to http://localhost:3000/translation_handler/translations
1084
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
1085
-
1086
-
1087
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:30:07 +0600
1088
- Processing by TranslationHandler::TranslationsController#index as HTML
1089
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.5ms)
1090
- Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1091
-
1092
-
1093
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:30:07 +0600
1094
-
1095
-
1096
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:30:09 +0600
1097
- Processing by TranslationHandler::TranslationsController#new as HTML
1098
- Rendered translation_handler/translations/new.html.erb within layouts/application (2.7ms)
1099
- Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
1100
-
1101
-
1102
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:30:09 +0600
1103
-
1104
-
1105
- Started POST "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:30:23 +0600
1106
- Processing by TranslationHandler::TranslationsController#create as HTML
1107
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "language"=>"a.b_c-d", "commit"=>"Create"}
1108
- Redirected to http://localhost:3000/translation_handler/translations
1109
- Completed 302 Found in 63ms (ActiveRecord: 0.0ms)
1110
-
1111
-
1112
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:30:24 +0600
1113
- Processing by TranslationHandler::TranslationsController#index as HTML
1114
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.2ms)
1115
- Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms)
1116
-
1117
-
1118
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:30:24 +0600
1119
-
1120
-
1121
- Started GET "/translation_handler/translations/a.b_c-d/edit" for 127.0.0.1 at 2014-01-14 01:30:25 +0600
1122
- Processing by TranslationHandler::TranslationsController#edit as HTML
1123
- Parameters: {"id"=>"a.b_c-d"}
1124
- Rendered translation_handler/translations/edit.html.erb within layouts/application (3.0ms)
1125
- Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.0ms)
1126
-
1127
-
1128
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:30:25 +0600
1129
-
1130
-
1131
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:30:45 +0600
1132
- Processing by TranslationHandler::TranslationsController#index as HTML
1133
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.6ms)
1134
- Completed 500 Internal Server Error in 6ms
1135
-
1136
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1137
- 1: <%= kolas_url %>
1138
- 2: <ul>
1139
- 3: <% @available_locales.each do |locale| %>
1140
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1141
- 5: <% end %>
1142
- 6: </ul>
1143
- 7:
1144
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb___338372552_74039330'
1145
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1146
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb___338372552_74039330'
1147
-
1148
-
1149
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
1150
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1151
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.6ms)
1152
-
1153
-
1154
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:31:04 +0600
1155
- Processing by TranslationHandler::TranslationsController#index as HTML
1156
- Rendered translation_handler/translations/index.html.erb within layouts/application (5.0ms)
1157
- Completed 500 Internal Server Error in 36ms
1158
-
1159
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1160
- 1: <%= kolas_url %>
1161
- 2: <ul>
1162
- 3: <% @available_locales.each do |locale| %>
1163
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1164
- 5: <% end %>
1165
- 6: </ul>
1166
- 7:
1167
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1168
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1169
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1170
-
1171
-
1172
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
1173
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (37.5ms)
1174
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (48.6ms)
1175
-
1176
-
1177
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:31:05 +0600
1178
- Processing by TranslationHandler::TranslationsController#index as HTML
1179
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.7ms)
1180
- Completed 500 Internal Server Error in 3ms
1181
-
1182
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1183
- 1: <%= kolas_url %>
1184
- 2: <ul>
1185
- 3: <% @available_locales.each do |locale| %>
1186
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1187
- 5: <% end %>
1188
- 6: </ul>
1189
- 7:
1190
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1191
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1192
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1193
-
1194
-
1195
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
1196
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1197
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.0ms)
1198
-
1199
-
1200
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:31:24 +0600
1201
- Processing by TranslationHandler::TranslationsController#index as HTML
1202
- Rendered translation_handler/translations/index.html.erb within layouts/application (2.1ms)
1203
- Completed 500 Internal Server Error in 4ms
1204
-
1205
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1206
- 1: <%= kolas_url %>
1207
- 2: <ul>
1208
- 3: <% @available_locales.each do |locale| %>
1209
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1210
- 5: <% end %>
1211
- 6: </ul>
1212
- 7:
1213
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1214
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1215
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1216
-
1217
-
1218
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1219
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
1220
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.6ms)
1221
-
1222
-
1223
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:31:25 +0600
1224
- Processing by TranslationHandler::TranslationsController#index as HTML
1225
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.8ms)
1226
- Completed 500 Internal Server Error in 5ms
1227
-
1228
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1229
- 1: <%= kolas_url %>
1230
- 2: <ul>
1231
- 3: <% @available_locales.each do |locale| %>
1232
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1233
- 5: <% end %>
1234
- 6: </ul>
1235
- 7:
1236
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1237
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1238
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1239
-
1240
-
1241
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
1242
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms)
1243
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.5ms)
1244
-
1245
-
1246
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:31:25 +0600
1247
- Processing by TranslationHandler::TranslationsController#index as HTML
1248
- Rendered translation_handler/translations/index.html.erb within layouts/application (2.4ms)
1249
- Completed 500 Internal Server Error in 11ms
1250
-
1251
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1252
- 1: <%= kolas_url %>
1253
- 2: <ul>
1254
- 3: <% @available_locales.each do |locale| %>
1255
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1256
- 5: <% end %>
1257
- 6: </ul>
1258
- 7:
1259
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1260
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1261
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1262
-
1263
-
1264
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1265
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms)
1266
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.4ms)
1267
-
1268
-
1269
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:31:26 +0600
1270
- Processing by TranslationHandler::TranslationsController#index as HTML
1271
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.3ms)
1272
- Completed 500 Internal Server Error in 6ms
1273
-
1274
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1275
- 1: <%= kolas_url %>
1276
- 2: <ul>
1277
- 3: <% @available_locales.each do |locale| %>
1278
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1279
- 5: <% end %>
1280
- 6: </ul>
1281
- 7:
1282
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1283
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1284
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1285
-
1286
-
1287
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1288
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
1289
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.8ms)
1290
-
1291
-
1292
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:31:26 +0600
1293
- Processing by TranslationHandler::TranslationsController#index as HTML
1294
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.8ms)
1295
- Completed 500 Internal Server Error in 4ms
1296
-
1297
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1298
- 1: <%= kolas_url %>
1299
- 2: <ul>
1300
- 3: <% @available_locales.each do |locale| %>
1301
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1302
- 5: <% end %>
1303
- 6: </ul>
1304
- 7:
1305
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1306
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1307
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1308
-
1309
-
1310
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
1311
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
1312
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.6ms)
1313
-
1314
-
1315
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:08 +0600
1316
- Processing by TranslationHandler::TranslationsController#index as HTML
1317
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.8ms)
1318
- Completed 500 Internal Server Error in 4ms
1319
-
1320
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1321
- 1: <%= kolas_url %>
1322
- 2: <ul>
1323
- 3: <% @available_locales.each do |locale| %>
1324
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1325
- 5: <% end %>
1326
- 6: </ul>
1327
- 7:
1328
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1329
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1330
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1331
-
1332
-
1333
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1334
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
1335
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.3ms)
1336
-
1337
-
1338
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:09 +0600
1339
- Processing by TranslationHandler::TranslationsController#index as HTML
1340
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.8ms)
1341
- Completed 500 Internal Server Error in 8ms
1342
-
1343
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1344
- 1: <%= kolas_url %>
1345
- 2: <ul>
1346
- 3: <% @available_locales.each do |locale| %>
1347
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1348
- 5: <% end %>
1349
- 6: </ul>
1350
- 7:
1351
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1352
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1353
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1354
-
1355
-
1356
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1357
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1358
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.1ms)
1359
-
1360
-
1361
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:09 +0600
1362
- Processing by TranslationHandler::TranslationsController#index as HTML
1363
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.5ms)
1364
- Completed 500 Internal Server Error in 7ms
1365
-
1366
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1367
- 1: <%= kolas_url %>
1368
- 2: <ul>
1369
- 3: <% @available_locales.each do |locale| %>
1370
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1371
- 5: <% end %>
1372
- 6: </ul>
1373
- 7:
1374
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1375
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1376
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1377
-
1378
-
1379
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1380
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
1381
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.9ms)
1382
-
1383
-
1384
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:10 +0600
1385
- Processing by TranslationHandler::TranslationsController#index as HTML
1386
- Rendered translation_handler/translations/index.html.erb within layouts/application (2.1ms)
1387
- Completed 500 Internal Server Error in 4ms
1388
-
1389
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1390
- 1: <%= kolas_url %>
1391
- 2: <ul>
1392
- 3: <% @available_locales.each do |locale| %>
1393
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1394
- 5: <% end %>
1395
- 6: </ul>
1396
- 7:
1397
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1398
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1399
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb__172034420_78384110'
1400
-
1401
-
1402
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1403
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
1404
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.3ms)
1405
-
1406
-
1407
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:26 +0600
1408
-
1409
- SyntaxError (/home/bilash/projects/gemmm/translation_handler/config/routes.rb:3: syntax error, unexpected '}', expecting =>):
1410
- activesupport (4.0.2) lib/active_support/dependencies.rb:223:in `load'
1411
- activesupport (4.0.2) lib/active_support/dependencies.rb:223:in `block in load'
1412
- activesupport (4.0.2) lib/active_support/dependencies.rb:214:in `load_dependency'
1413
- activesupport (4.0.2) lib/active_support/dependencies.rb:223:in `load'
1414
- railties (4.0.2) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
1415
- railties (4.0.2) lib/rails/application/routes_reloader.rb:40:in `each'
1416
- railties (4.0.2) lib/rails/application/routes_reloader.rb:40:in `load_paths'
1417
- railties (4.0.2) lib/rails/application/routes_reloader.rb:16:in `reload!'
1418
- railties (4.0.2) lib/rails/application/routes_reloader.rb:26:in `block in updater'
1419
- activesupport (4.0.2) lib/active_support/file_update_checker.rb:75:in `call'
1420
- activesupport (4.0.2) lib/active_support/file_update_checker.rb:75:in `execute'
1421
- railties (4.0.2) lib/rails/application/routes_reloader.rb:7:in `execute'
1422
- railties (4.0.2) lib/rails/application/finisher.rb:81:in `block (2 levels) in <module:Finisher>'
1423
- activesupport (4.0.2) lib/active_support/callbacks.rb:397:in `_run__959257937__prepare__callbacks'
1424
- activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1425
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
1426
- actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:62:in `call'
1427
- actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1428
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1429
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1430
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1431
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1432
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1433
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1434
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1435
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1436
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1437
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1438
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1439
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1440
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1441
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1442
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1443
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
1444
- railties (4.0.2) lib/rails/application.rb:97:in `call'
1445
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1446
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1447
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1448
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1449
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1450
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1451
-
1452
-
1453
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
1454
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
1455
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
1456
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.9ms)
1457
-
1458
-
1459
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:48 +0600
1460
-
1461
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
1462
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1463
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1464
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1465
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1466
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1467
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1468
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1469
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1470
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1471
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1472
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1473
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1474
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1475
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1476
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1477
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
1478
- railties (4.0.2) lib/rails/application.rb:97:in `call'
1479
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1480
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1481
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1482
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1483
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1484
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1485
-
1486
-
1487
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
1488
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms)
1489
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.5ms)
1490
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (28.2ms)
1491
-
1492
-
1493
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:49 +0600
1494
-
1495
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
1496
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1497
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1498
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1499
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1500
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1501
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1502
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1503
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1504
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1505
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1506
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1507
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1508
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1509
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1510
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1511
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
1512
- railties (4.0.2) lib/rails/application.rb:97:in `call'
1513
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1514
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1515
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1516
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1517
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1518
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1519
-
1520
-
1521
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
1522
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
1523
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms)
1524
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.0ms)
1525
-
1526
-
1527
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:50 +0600
1528
-
1529
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
1530
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1531
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1532
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1533
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1534
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1535
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1536
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1537
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1538
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1539
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1540
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1541
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1542
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1543
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1544
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1545
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
1546
- railties (4.0.2) lib/rails/application.rb:97:in `call'
1547
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1548
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1549
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1550
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1551
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1552
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1553
-
1554
-
1555
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1556
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
1557
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
1558
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.2ms)
1559
-
1560
-
1561
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:50 +0600
1562
-
1563
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
1564
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1565
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1566
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1567
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1568
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1569
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1570
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1571
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1572
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1573
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1574
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1575
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1576
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1577
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1578
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1579
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
1580
- railties (4.0.2) lib/rails/application.rb:97:in `call'
1581
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1582
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1583
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1584
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1585
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1586
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1587
-
1588
-
1589
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1590
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
1591
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
1592
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (21.3ms)
1593
-
1594
-
1595
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:50 +0600
1596
-
1597
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
1598
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1599
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1600
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1601
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1602
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1603
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1604
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1605
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1606
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1607
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1608
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1609
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1610
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1611
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1612
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1613
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
1614
- railties (4.0.2) lib/rails/application.rb:97:in `call'
1615
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1616
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1617
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1618
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1619
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1620
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1621
-
1622
-
1623
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1624
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
1625
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
1626
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (19.6ms)
1627
-
1628
-
1629
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:32:50 +0600
1630
-
1631
- ActionController::RoutingError (No route matches [GET] "/translation_handler/translations"):
1632
- actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1633
- actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1634
- railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1635
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1636
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1637
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1638
- activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1639
- railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1640
- actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1641
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1642
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1643
- activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1644
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1645
- actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1646
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1647
- railties (4.0.2) lib/rails/engine.rb:511:in `call'
1648
- railties (4.0.2) lib/rails/application.rb:97:in `call'
1649
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1650
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1651
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1652
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1653
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1654
- /home/bilash/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1655
-
1656
-
1657
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1658
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
1659
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
1660
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (20.4ms)
1661
-
1662
-
1663
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:33:50 +0600
1664
- Processing by TranslationHandler::TranslationsController#index as HTML
1665
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.4ms)
1666
- Completed 200 OK in 55ms (Views: 54.2ms | ActiveRecord: 0.0ms)
1667
-
1668
-
1669
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:33:51 +0600
1670
-
1671
-
1672
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:33:51 +0600
1673
-
1674
-
1675
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:34:44 +0600
1676
- Processing by TranslationHandler::TranslationsController#index as HTML
1677
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.2ms)
1678
- Completed 500 Internal Server Error in 5ms
1679
-
1680
- ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"translation_handler/translations", :id=>"a.b_c-d"} missing required keys: [:id]):
1681
- 1: <%= kolas_url %>
1682
- 2: <ul>
1683
- 3: <% @available_locales.each do |locale| %>
1684
- 4: <li><%= link_to locale, edit_translation_handler_translation_path(:id => locale) %></li>
1685
- 5: <% end %>
1686
- 6: </ul>
1687
- 7:
1688
- app/views/translation_handler/translations/index.html.erb:4:in `block in _app_views_translation_handler_translations_index_html_erb___169850151_85737170'
1689
- app/views/translation_handler/translations/index.html.erb:3:in `each'
1690
- app/views/translation_handler/translations/index.html.erb:3:in `_app_views_translation_handler_translations_index_html_erb___169850151_85737170'
1691
-
1692
-
1693
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1694
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms)
1695
- Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.1ms)
1696
-
1697
-
1698
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:36:14 +0600
1699
- Processing by TranslationHandler::TranslationsController#index as HTML
1700
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.4ms)
1701
- Completed 200 OK in 56ms (Views: 55.5ms | ActiveRecord: 0.0ms)
1702
-
1703
-
1704
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:36:14 +0600
1705
-
1706
-
1707
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:36:14 +0600
1708
-
1709
-
1710
- Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-14 01:36:17 +0600
1711
- Processing by TranslationHandler::TranslationsController#edit as HTML
1712
- Parameters: {"id"=>"en"}
1713
- Rendered translation_handler/translations/edit.html.erb within layouts/application (2.8ms)
1714
- Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.0ms)
1715
-
1716
-
1717
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:36:17 +0600
1718
-
1719
-
1720
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:36:17 +0600
1721
-
1722
-
1723
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:36:19 +0600
1724
- Processing by TranslationHandler::TranslationsController#new as HTML
1725
- Rendered translation_handler/translations/new.html.erb within layouts/application (2.1ms)
1726
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1727
-
1728
-
1729
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:36:19 +0600
1730
-
1731
-
1732
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:36:19 +0600
1733
-
1734
-
1735
- Started POST "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:36:26 +0600
1736
- Processing by TranslationHandler::TranslationsController#create as HTML
1737
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "language"=>"baal.challlll", "commit"=>"Create"}
1738
- Redirected to http://localhost:3000/translation_handler/translations
1739
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1740
-
1741
-
1742
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:36:26 +0600
1743
- Processing by TranslationHandler::TranslationsController#index as HTML
1744
- Rendered translation_handler/translations/index.html.erb within layouts/application (2.2ms)
1745
- Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
1746
-
1747
-
1748
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:36:26 +0600
1749
-
1750
-
1751
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:36:26 +0600
5
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/railties-4.0.1/lib/rails/templates/rails/welcome/index.html.erb (1.8ms)
6
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
1752
7
 
1753
8
 
1754
- Started GET "/translation_handler/translations/baal.chaal/edit" for 127.0.0.1 at 2014-01-14 01:36:28 +0600
1755
- Processing by TranslationHandler::TranslationsController#edit as HTML
1756
- Parameters: {"id"=>"baal.chaal"}
1757
- Rendered translation_handler/translations/edit.html.erb within layouts/application (4.1ms)
1758
- Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
9
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:32:18 +0600
10
+ Processing by TranslationHandler::TranslationsController#index as HTML
11
+ Rendered translation_handler/translations/index.html.erb within layouts/application (1.6ms)
12
+ Completed 200 OK in 49ms (Views: 48.9ms | ActiveRecord: 0.0ms)
1759
13
 
1760
14
 
1761
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:36:28 +0600
15
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:32:18 +0600
1762
16
 
1763
17
 
1764
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:36:28 +0600
18
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:32:18 +0600
1765
19
 
1766
20
 
1767
- Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-14 01:36:38 +0600
21
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:32:23 +0600
1768
22
  Processing by TranslationHandler::TranslationsController#edit as HTML
1769
23
  Parameters: {"id"=>"en"}
1770
- Rendered translation_handler/translations/edit.html.erb within layouts/application (2.5ms)
1771
- Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms)
24
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (2.4ms)
25
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
26
+
27
+
28
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:32:31 +0600
29
+ Processing by TranslationHandler::TranslationsController#update as HTML
30
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test", "field_2"=>"def@yahoo.com", "field_3"=>"last first", "id"=>"en", "commit"=>"Update"}
31
+ Completed 500 Internal Server Error in 2ms
32
+
33
+ RuntimeError ("---\n:en:\n :hello: hello test\n :user:\n :attributes:\n :email: def@yahoo.com\n :name: last first\n"):
34
+ /home/bilash/projects/translation_handler/app/controllers/translation_handler/translations_controller.rb:43:in `update'
35
+ actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
36
+ actionpack (4.0.1) lib/abstract_controller/base.rb:189:in `process_action'
37
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
38
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
39
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__998059026__process_action__callbacks'
40
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
41
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
42
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
43
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
44
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
45
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
46
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
47
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
48
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
49
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
50
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
51
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
52
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
53
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
54
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
55
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
56
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
57
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
58
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
59
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
60
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
61
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
62
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
63
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
64
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
65
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
66
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
67
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
68
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
69
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
70
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
71
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
72
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
73
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
74
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__97444419__call__callbacks'
75
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
76
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
77
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
78
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
79
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
80
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
81
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
82
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
83
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
84
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
85
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
86
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
87
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
88
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
89
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
90
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
91
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
92
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
93
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
94
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
95
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
96
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
97
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
98
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
99
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
100
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
101
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1772
102
 
1773
103
 
1774
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:36:38 +0600
104
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
105
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (25.4ms)
106
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
107
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (42.3ms)
1775
108
 
1776
109
 
1777
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:36:38 +0600
110
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:34:52 +0600
111
+ Processing by TranslationHandler::TranslationsController#update as HTML
112
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test", "field_2"=>"def@yahoo.com", "field_3"=>"last first", "id"=>"en", "commit"=>"Update"}
113
+ Redirected to http://localhost:3000/translation_handler/translations
114
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1778
115
 
1779
116
 
1780
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:42:08 +0600
117
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:34:52 +0600
1781
118
  Processing by TranslationHandler::TranslationsController#index as HTML
1782
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.7ms)
1783
- Completed 200 OK in 81ms (Views: 80.5ms | ActiveRecord: 0.0ms)
119
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
120
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1784
121
 
1785
122
 
1786
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:42:08 +0600
123
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:34:52 +0600
1787
124
 
1788
125
 
1789
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:42:08 +0600
126
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:34:52 +0600
1790
127
 
1791
128
 
1792
- Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-14 01:42:10 +0600
129
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:35:32 +0600
1793
130
  Processing by TranslationHandler::TranslationsController#edit as HTML
1794
131
  Parameters: {"id"=>"en"}
1795
- Rendered translation_handler/translations/edit.html.erb within layouts/application (2.6ms)
1796
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
132
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (1.5ms)
133
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
1797
134
 
1798
135
 
1799
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:42:10 +0600
136
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:35:32 +0600
1800
137
 
1801
138
 
1802
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:42:10 +0600
139
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:35:32 +0600
1803
140
 
1804
141
 
1805
- Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-14 01:42:15 +0600
142
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:35:37 +0600
1806
143
  Processing by TranslationHandler::TranslationsController#update as HTML
1807
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"hello test", "id"=>"en", "commit"=>"Update"}
144
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11", "field_2"=>"def@yahoo.com", "field_3"=>"last first", "id"=>"en", "commit"=>"Update"}
1808
145
  Redirected to http://localhost:3000/translation_handler/translations
1809
146
  Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
1810
147
 
1811
148
 
1812
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:42:15 +0600
149
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:35:37 +0600
1813
150
  Processing by TranslationHandler::TranslationsController#index as HTML
1814
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.9ms)
1815
- Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1816
-
1817
-
1818
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:42:15 +0600
1819
-
1820
-
1821
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:42:15 +0600
1822
-
1823
-
1824
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:42:21 +0600
1825
- Processing by TranslationHandler::TranslationsController#new as HTML
1826
- Rendered translation_handler/translations/new.html.erb within layouts/application (2.6ms)
1827
- Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
1828
-
1829
-
1830
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:42:21 +0600
151
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
152
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1831
153
 
1832
154
 
1833
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:42:21 +0600
155
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:35:37 +0600
1834
156
 
1835
157
 
1836
- Started POST "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:42:30 +0600
1837
- Processing by TranslationHandler::TranslationsController#create as HTML
1838
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "language"=>"abdul.barek", "commit"=>"Create"}
1839
- Redirected to http://localhost:3000/translation_handler/translations
1840
- Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
158
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:35:37 +0600
1841
159
 
1842
160
 
1843
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:42:30 +0600
161
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:36:19 +0600
1844
162
  Processing by TranslationHandler::TranslationsController#index as HTML
1845
- Rendered translation_handler/translations/index.html.erb within layouts/application (2.1ms)
1846
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
163
+ Rendered translation_handler/translations/index.html.erb within layouts/application (2.3ms)
164
+ Completed 200 OK in 45ms (Views: 44.1ms | ActiveRecord: 0.0ms)
1847
165
 
1848
166
 
1849
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:42:31 +0600
167
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:36:19 +0600
1850
168
 
1851
169
 
1852
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:42:31 +0600
170
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:36:19 +0600
1853
171
 
1854
172
 
1855
- Started GET "/translation_handler/translations/abdul.barek/edit" for 127.0.0.1 at 2014-01-14 01:42:32 +0600
173
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:36:20 +0600
1856
174
  Processing by TranslationHandler::TranslationsController#edit as HTML
1857
- Parameters: {"id"=>"abdul.barek"}
1858
- Rendered translation_handler/translations/edit.html.erb within layouts/application (4.3ms)
1859
- Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
175
+ Parameters: {"id"=>"en"}
176
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (2.5ms)
177
+ Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1860
178
 
1861
179
 
1862
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:42:32 +0600
180
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:36:20 +0600
1863
181
 
1864
182
 
1865
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:42:32 +0600
183
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:36:20 +0600
1866
184
 
1867
185
 
1868
- Started PUT "/translation_handler/translations/abdul.barek" for 127.0.0.1 at 2014-01-14 01:42:53 +0600
186
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:36:23 +0600
1869
187
  Processing by TranslationHandler::TranslationsController#update as HTML
1870
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"hello test", "id"=>"abdul.barek", "commit"=>"Update"}
188
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "id"=>"en", "commit"=>"Update"}
1871
189
  Redirected to http://localhost:3000/translation_handler/translations
1872
190
  Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
1873
191
 
1874
192
 
1875
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:42:53 +0600
193
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:36:23 +0600
1876
194
  Processing by TranslationHandler::TranslationsController#index as HTML
1877
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.9ms)
1878
- Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
1879
-
1880
-
1881
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:42:53 +0600
1882
-
1883
-
1884
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:42:53 +0600
1885
-
1886
-
1887
- Started GET "/translation_handler/translations/an.dy/edit" for 127.0.0.1 at 2014-01-14 01:44:00 +0600
1888
- Processing by TranslationHandler::TranslationsController#edit as HTML
1889
- Parameters: {"id"=>"an.dy"}
1890
- Rendered translation_handler/translations/edit.html.erb within layouts/application (1.8ms)
1891
- Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
195
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.8ms)
196
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1892
197
 
1893
198
 
1894
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:44:00 +0600
199
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:36:23 +0600
1895
200
 
1896
201
 
1897
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:44:00 +0600
202
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:36:23 +0600
1898
203
 
1899
204
 
1900
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:44:18 +0600
1901
- Processing by TranslationHandler::TranslationsController#edit as HTML
1902
- Parameters: {"id"=>"devise.en"}
1903
- Rendered translation_handler/translations/edit.html.erb within layouts/application (3.2ms)
1904
- Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.0ms)
205
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:36:42 +0600
206
+ Processing by TranslationHandler::TranslationsController#index as HTML
207
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.8ms)
208
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1905
209
 
1906
210
 
1907
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:44:18 +0600
211
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:36:42 +0600
1908
212
 
1909
213
 
1910
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:44:18 +0600
214
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:36:42 +0600
1911
215
 
1912
216
 
1913
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:44:34 +0600
217
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:36:43 +0600
1914
218
  Processing by TranslationHandler::TranslationsController#edit as HTML
1915
- Parameters: {"id"=>"devise.en"}
1916
- Rendered translation_handler/translations/edit.html.erb within layouts/application (1.7ms)
219
+ Parameters: {"id"=>"en"}
220
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (1.5ms)
1917
221
  Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
1918
222
 
1919
223
 
1920
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:44:34 +0600
1921
-
1922
-
1923
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:44:34 +0600
1924
-
1925
-
1926
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:49:53 +0600
1927
- Processing by TranslationHandler::TranslationsController#index as HTML
1928
- Rendered translation_handler/translations/index.html.erb within layouts/application (2.8ms)
1929
- Completed 200 OK in 84ms (Views: 83.1ms | ActiveRecord: 0.0ms)
1930
-
1931
-
1932
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:49:53 +0600
1933
-
224
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:36:43 +0600
1934
225
 
1935
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:49:53 +0600
1936
226
 
227
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:36:43 +0600
1937
228
 
1938
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:49:56 +0600
1939
- Processing by TranslationHandler::TranslationsController#new as HTML
1940
- Rendered translation_handler/translations/new.html.erb within layouts/application (2.5ms)
1941
- Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
1942
229
 
1943
-
1944
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:49:56 +0600
1945
-
1946
-
1947
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:49:56 +0600
1948
-
1949
-
1950
- Started POST "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:50:02 +0600
1951
- Processing by TranslationHandler::TranslationsController#create as HTML
1952
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "language"=>"abdul.barek", "commit"=>"Create"}
230
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:36:49 +0600
231
+ Processing by TranslationHandler::TranslationsController#update as HTML
232
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "id"=>"en", "commit"=>"Update"}
1953
233
  Redirected to http://localhost:3000/translation_handler/translations
1954
234
  Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1955
235
 
1956
236
 
1957
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:50:02 +0600
237
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:36:49 +0600
1958
238
  Processing by TranslationHandler::TranslationsController#index as HTML
1959
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.7ms)
1960
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1961
-
1962
-
1963
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:50:02 +0600
1964
-
1965
-
1966
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:50:02 +0600
1967
-
1968
-
1969
- Started GET "/translation_handler/translations/abdul.barek/edit" for 127.0.0.1 at 2014-01-14 01:50:04 +0600
1970
- Processing by TranslationHandler::TranslationsController#edit as HTML
1971
- Parameters: {"id"=>"abdul.barek"}
1972
- Rendered translation_handler/translations/edit.html.erb within layouts/application (5.8ms)
1973
- Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
1974
-
1975
-
1976
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:50:04 +0600
1977
-
1978
-
1979
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:50:04 +0600
1980
-
1981
-
1982
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:50:32 +0600
1983
- Processing by TranslationHandler::TranslationsController#edit as HTML
1984
- Parameters: {"id"=>"devise.en"}
1985
- Rendered translation_handler/translations/edit.html.erb within layouts/application (1.6ms)
1986
- Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
239
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
240
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1987
241
 
1988
242
 
1989
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:50:32 +0600
243
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:36:49 +0600
1990
244
 
1991
245
 
1992
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:50:32 +0600
246
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:36:49 +0600
1993
247
 
1994
248
 
1995
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:53:21 +0600
249
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:37:13 +0600
1996
250
  Processing by TranslationHandler::TranslationsController#index as HTML
1997
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.2ms)
1998
- Completed 200 OK in 87ms (Views: 86.3ms | ActiveRecord: 0.0ms)
251
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.9ms)
252
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1999
253
 
2000
254
 
2001
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:53:21 +0600
255
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:37:13 +0600
2002
256
 
2003
257
 
2004
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:53:21 +0600
258
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:37:13 +0600
2005
259
 
2006
260
 
2007
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:53:28 +0600
261
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:37:14 +0600
2008
262
  Processing by TranslationHandler::TranslationsController#edit as HTML
2009
- Parameters: {"id"=>"devise.en"}
2010
- Rendered translation_handler/translations/edit.html.erb within layouts/application (2.9ms)
2011
- Completed 200 OK in 13ms (Views: 7.1ms | ActiveRecord: 0.0ms)
263
+ Parameters: {"id"=>"en"}
264
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (1.3ms)
265
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
2012
266
 
2013
267
 
2014
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:53:29 +0600
268
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:37:14 +0600
2015
269
 
2016
270
 
2017
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:53:29 +0600
271
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:37:14 +0600
2018
272
 
2019
273
 
2020
- Started PUT "/translation_handler/translations/devise.en" for 127.0.0.1 at 2014-01-14 01:53:34 +0600
274
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:37:17 +0600
2021
275
  Processing by TranslationHandler::TranslationsController#update as HTML
2022
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"Your account was successfully confirmed. You are now signed in.", "field_2"=>"You will receive an email with instructions about how to confirm your account in a few minutes.", "field_3"=>"If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes.", "field_4"=>"You are already signed in.", "field_5"=>"Your account was not activated yet.", "field_6"=>"Invalid email or password.", "field_7"=>"Invalid authentication token.", "field_8"=>"Your account is locked.", "field_9"=>"Invalid email or password.", "field_10"=>"Your session expired, please sign in again to continue.", "field_11"=>"You need to sign in or sign up before continuing.", "field_12"=>"You have to confirm your account before continuing.", "field_13"=>"Confirmation instructions", "field_14"=>"Reset password instructions", "field_15"=>"Unlock Instructions", "field_16"=>"Could not authenticate you from %{kind} because \"%{reason}\".", "field_17"=>"Successfully authenticated from %{kind} account.", "field_18"=>"You can", "field_19"=>"You will receive an email with instructions about how to reset your password in a few minutes.", "field_20"=>"If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes.", "field_21"=>"Your password was changed successfully. You are now signed in.", "field_22"=>"Your password was changed successfully.", "field_23"=>"Bye! Your account was successfully cancelled. We hope to see you again soon.", "field_24"=>"Welcome! You have signed up successfully.", "field_25"=>"You have signed up successfully. However, we could not sign you in because your account is not yet activated.", "field_26"=>"You have signed up successfully. However, we could not sign you in because your account is locked.", "field_27"=>"A message with a confirmation link has been sent to your email address. Please open the link to activate your account.", "field_28"=>"You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address.", "field_29"=>"You updated your account successfully.", "field_30"=>"Signed in successfully.", "field_31"=>"Signed out successfully.", "field_32"=>"You will receive an email with instructions about how to unlock your account in a few minutes.", "field_33"=>"If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.", "field_34"=>"Your account has been unlocked successfully. Please sign in to continue.", "field_35"=>"was already confirmed, please try signing in", "field_36"=>"needs to be confirmed within %{period}, please request a new one", "field_37"=>"has expired, please request a new one", "field_38"=>"not found", "field_39"=>"was not locked", "field_40"=>"1 error prohibited this %{resource} from being saved:", "field_41"=>"%{count} errors prohibited this %{resource} from being saved:", "id"=>"devise.en", "commit"=>"Update"}
276
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"125464435", "id"=>"en", "commit"=>"Update"}
2023
277
  Redirected to http://localhost:3000/translation_handler/translations
2024
- Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
278
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
2025
279
 
2026
280
 
2027
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:53:34 +0600
281
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:37:17 +0600
2028
282
  Processing by TranslationHandler::TranslationsController#index as HTML
2029
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.4ms)
2030
- Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
283
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
284
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
2031
285
 
2032
286
 
2033
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:53:35 +0600
287
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:37:17 +0600
2034
288
 
2035
289
 
2036
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:53:35 +0600
290
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:37:17 +0600
2037
291
 
2038
292
 
2039
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:53:36 +0600
293
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:37:47 +0600
2040
294
  Processing by TranslationHandler::TranslationsController#edit as HTML
2041
- Parameters: {"id"=>"devise.en"}
2042
- Rendered translation_handler/translations/edit.html.erb within layouts/application (1.9ms)
2043
- Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
295
+ Parameters: {"id"=>"en"}
296
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (1.4ms)
297
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
2044
298
 
2045
299
 
2046
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:53:36 +0600
300
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:37:47 +0600
2047
301
 
2048
302
 
2049
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:53:36 +0600
303
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:37:47 +0600
2050
304
 
2051
305
 
2052
- Started PUT "/translation_handler/translations/devise.en" for 127.0.0.1 at 2014-01-14 01:53:38 +0600
306
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:37:50 +0600
2053
307
  Processing by TranslationHandler::TranslationsController#update as HTML
2054
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "field_1"=>"Your account was successfully confirmed. You are now signed in.", "field_2"=>"You will receive an email with instructions about how to confirm your account in a few minutes.", "field_3"=>"If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes.", "field_4"=>"You are already signed in.", "field_5"=>"Your account was not activated yet.", "field_6"=>"Invalid email or password.", "field_7"=>"Invalid authentication token.", "field_8"=>"Your account is locked.", "field_9"=>"Invalid email or password.", "field_10"=>"Your session expired, please sign in again to continue.", "field_11"=>"You need to sign in or sign up before continuing.", "field_12"=>"You have to confirm your account before continuing.", "field_13"=>"Confirmation instructions", "field_14"=>"Reset password instructions", "field_15"=>"Unlock Instructions", "field_16"=>"Could not authenticate you from %{kind} because \"%{reason}\".", "field_17"=>"Successfully authenticated from %{kind} account.", "field_18"=>"You can", "field_19"=>"You will receive an email with instructions about how to reset your password in a few minutes.", "field_20"=>"If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes.", "field_21"=>"Your password was changed successfully. You are now signed in.", "field_22"=>"Your password was changed successfully.", "field_23"=>"Bye! Your account was successfully cancelled. We hope to see you again soon.", "field_24"=>"Welcome! You have signed up successfully.", "field_25"=>"You have signed up successfully. However, we could not sign you in because your account is not yet activated.", "field_26"=>"You have signed up successfully. However, we could not sign you in because your account is locked.", "field_27"=>"A message with a confirmation link has been sent to your email address. Please open the link to activate your account.", "field_28"=>"You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address.", "field_29"=>"You updated your account successfully.", "field_30"=>"Signed in successfully.", "field_31"=>"Signed out successfully.", "field_32"=>"You will receive an email with instructions about how to unlock your account in a few minutes.", "field_33"=>"If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.", "field_34"=>"Your account has been unlocked successfully. Please sign in to continue.", "field_35"=>"was already confirmed, please try signing in", "field_36"=>"needs to be confirmed within %{period}, please request a new one", "field_37"=>"has expired, please request a new one", "field_38"=>"not found", "field_39"=>"was not locked", "field_40"=>"1 error prohibited this %{resource} from being saved:", "field_41"=>"%{count} errors prohibited this %{resource} from being saved:", "id"=>"devise.en", "commit"=>"Update"}
308
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"1", "id"=>"en", "commit"=>"Update"}
2055
309
  Redirected to http://localhost:3000/translation_handler/translations
2056
- Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
310
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
2057
311
 
2058
312
 
2059
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 01:53:38 +0600
313
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:37:50 +0600
2060
314
  Processing by TranslationHandler::TranslationsController#index as HTML
2061
- Rendered translation_handler/translations/index.html.erb within layouts/application (2.1ms)
2062
- Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.0ms)
2063
-
2064
-
2065
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:53:38 +0600
2066
-
2067
-
2068
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:53:38 +0600
2069
-
2070
-
2071
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:53:43 +0600
2072
- Processing by TranslationHandler::TranslationsController#new as HTML
2073
- Rendered translation_handler/translations/new.html.erb within layouts/application (5.4ms)
2074
- Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
2075
-
2076
-
2077
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:53:43 +0600
2078
-
2079
-
2080
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:53:43 +0600
2081
-
2082
-
2083
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:23 +0600
2084
- Processing by TranslationHandler::TranslationsController#new as HTML
2085
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.5ms)
2086
- Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
2087
-
2088
-
2089
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:23 +0600
2090
-
2091
-
2092
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:23 +0600
2093
-
2094
-
2095
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2096
- Processing by TranslationHandler::TranslationsController#new as HTML
2097
- Rendered translation_handler/translations/new.html.erb within layouts/application (2.0ms)
2098
- Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
2099
-
2100
-
2101
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2102
-
2103
-
2104
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2105
-
2106
-
2107
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2108
- Processing by TranslationHandler::TranslationsController#new as HTML
2109
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.5ms)
2110
- Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
2111
-
2112
-
2113
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2114
-
2115
-
2116
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2117
-
2118
-
2119
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2120
- Processing by TranslationHandler::TranslationsController#new as HTML
2121
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.4ms)
2122
- Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
2123
-
2124
-
2125
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2126
-
2127
-
2128
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2129
-
2130
-
2131
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
2132
- Processing by TranslationHandler::TranslationsController#new as HTML
2133
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.4ms)
2134
- Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
315
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.8ms)
316
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
2135
317
 
2136
318
 
2137
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
319
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:37:51 +0600
2138
320
 
2139
321
 
2140
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:24 +0600
322
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:37:51 +0600
2141
323
 
2142
324
 
2143
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:33 +0600
2144
- Processing by TranslationHandler::TranslationsController#new as HTML
2145
- Rendered translation_handler/translations/new.html.erb within layouts/application (38.6ms)
2146
- Completed 200 OK in 55ms (Views: 54.7ms | ActiveRecord: 0.0ms)
325
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:38:15 +0600
326
+ Processing by TranslationHandler::TranslationsController#edit as HTML
327
+ Parameters: {"id"=>"en"}
328
+ Completed 500 Internal Server Error in 1ms
329
+
330
+ Psych::SyntaxError ((/home/bilash/projects/translation_handler/test/dummy/config/locales/en.yml): found character that cannot start any token while scanning for the next token at line 8 column 14):
331
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/psych.rb:205:in `parse'
332
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/psych.rb:205:in `parse_stream'
333
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/psych.rb:153:in `parse'
334
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/psych.rb:129:in `load'
335
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/psych.rb:299:in `block in load_file'
336
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/psych.rb:299:in `open'
337
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/psych.rb:299:in `load_file'
338
+ /home/bilash/projects/translation_handler/app/controllers/translation_handler/translations_controller.rb:58:in `edit'
339
+ actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
340
+ actionpack (4.0.1) lib/abstract_controller/base.rb:189:in `process_action'
341
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
342
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
343
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__397468303__process_action__callbacks'
344
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
345
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
346
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
347
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
348
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
349
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
350
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
351
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
352
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
353
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
354
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
355
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
356
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
357
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
358
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
359
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
360
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
361
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
362
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
363
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
364
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
365
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
366
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
367
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
368
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
369
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
370
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
371
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
372
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
373
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
374
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
375
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
376
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
377
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
378
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__427971287__call__callbacks'
379
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
380
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
381
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
382
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
383
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
384
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
385
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
386
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
387
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
388
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
389
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
390
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
391
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
392
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
393
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
394
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
395
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
396
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
397
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
398
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
399
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
400
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
401
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
402
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
403
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
404
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
405
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
2147
406
 
2148
407
 
2149
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:33 +0600
408
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
409
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
410
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
411
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.3ms)
2150
412
 
2151
413
 
2152
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:33 +0600
414
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:38:26 +0600
415
+ Processing by TranslationHandler::TranslationsController#edit as HTML
416
+ Parameters: {"id"=>"en"}
417
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (1.5ms)
418
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
2153
419
 
2154
420
 
2155
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2156
- Processing by TranslationHandler::TranslationsController#new as HTML
2157
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.7ms)
2158
- Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
421
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:38:26 +0600
2159
422
 
2160
423
 
2161
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
424
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:38:26 +0600
2162
425
 
2163
426
 
2164
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
427
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:38:33 +0600
428
+ Processing by TranslationHandler::TranslationsController#update as HTML
429
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"@!@", "id"=>"en", "commit"=>"Update"}
430
+ Redirected to http://localhost:3000/translation_handler/translations
431
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
2165
432
 
2166
433
 
2167
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2168
- Processing by TranslationHandler::TranslationsController#new as HTML
2169
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.4ms)
434
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:38:34 +0600
435
+ Processing by TranslationHandler::TranslationsController#index as HTML
436
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
2170
437
  Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
2171
438
 
2172
439
 
2173
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2174
-
2175
-
2176
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
440
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:38:34 +0600
2177
441
 
2178
442
 
2179
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2180
- Processing by TranslationHandler::TranslationsController#new as HTML
2181
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.3ms)
2182
- Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
443
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:38:34 +0600
2183
444
 
2184
445
 
2185
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2186
-
2187
-
2188
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2189
-
446
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:38:35 +0600
447
+ Processing by TranslationHandler::TranslationsController#edit as HTML
448
+ Parameters: {"id"=>"en"}
449
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (1.3ms)
450
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.0ms)
2190
451
 
2191
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2192
- Processing by TranslationHandler::TranslationsController#new as HTML
2193
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.7ms)
2194
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
2195
452
 
453
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:38:35 +0600
2196
454
 
2197
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2198
455
 
456
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:38:35 +0600
2199
457
 
2200
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2201
458
 
459
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:39:23 +0600
460
+ Processing by TranslationHandler::TranslationsController#edit as HTML
461
+ Parameters: {"id"=>"en"}
462
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (1.5ms)
463
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
2202
464
 
2203
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2204
- Processing by TranslationHandler::TranslationsController#new as HTML
2205
- Rendered translation_handler/translations/new.html.erb within layouts/application (2.2ms)
2206
- Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
2207
465
 
466
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:39:24 +0600
2208
467
 
2209
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2210
468
 
469
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:39:24 +0600
2211
470
 
2212
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:54:34 +0600
2213
471
 
472
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:39:25 +0600
473
+ Processing by TranslationHandler::TranslationsController#update as HTML
474
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"1235.022", "id"=>"en", "commit"=>"Update"}
475
+ Redirected to http://localhost:3000/translation_handler/translations
476
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
2214
477
 
2215
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:55:23 +0600
2216
- Processing by TranslationHandler::TranslationsController#new as HTML
2217
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.8ms)
2218
- Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
2219
478
 
479
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:39:25 +0600
480
+ Processing by TranslationHandler::TranslationsController#index as HTML
481
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
482
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
2220
483
 
2221
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:55:23 +0600
2222
484
 
485
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:39:25 +0600
2223
486
 
2224
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:55:23 +0600
2225
487
 
488
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:39:25 +0600
2226
489
 
2227
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2228
- Processing by TranslationHandler::TranslationsController#new as HTML
2229
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.3ms)
2230
- Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
2231
490
 
491
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:47:53 +0600
492
+ Processing by TranslationHandler::TranslationsController#index as HTML
493
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.6ms)
494
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
2232
495
 
2233
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2234
496
 
497
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:47:53 +0600
2235
498
 
2236
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2237
499
 
500
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:47:53 +0600
2238
501
 
2239
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2240
- Processing by TranslationHandler::TranslationsController#new as HTML
2241
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.3ms)
2242
- Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
2243
502
 
503
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:47:54 +0600
504
+ Processing by TranslationHandler::TranslationsController#edit as HTML
505
+ Parameters: {"id"=>"en"}
506
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (2.3ms)
507
+ Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.0ms)
2244
508
 
2245
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2246
509
 
510
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:47:54 +0600
2247
511
 
2248
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2249
512
 
513
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:47:54 +0600
2250
514
 
2251
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2252
- Processing by TranslationHandler::TranslationsController#new as HTML
2253
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.5ms)
2254
- Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
2255
515
 
516
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:48:00 +0600
517
+ Processing by TranslationHandler::TranslationsController#update as HTML
518
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"\"hello test 11222\"", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"1235.022", "id"=>"en", "commit"=>"Update"}
519
+ Redirected to http://localhost:3000/translation_handler/translations
520
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
2256
521
 
2257
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2258
522
 
523
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:48:00 +0600
524
+ Processing by TranslationHandler::TranslationsController#index as HTML
525
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.8ms)
526
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
2259
527
 
2260
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2261
528
 
529
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:48:01 +0600
2262
530
 
2263
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2264
- Processing by TranslationHandler::TranslationsController#new as HTML
2265
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.4ms)
2266
- Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
2267
531
 
532
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:48:01 +0600
2268
533
 
2269
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2270
534
 
535
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 14:48:02 +0600
536
+ Processing by TranslationHandler::TranslationsController#edit as HTML
537
+ Parameters: {"id"=>"en"}
538
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (3.1ms)
539
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.0ms)
2271
540
 
2272
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2273
541
 
542
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:48:02 +0600
2274
543
 
2275
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2276
- Processing by TranslationHandler::TranslationsController#new as HTML
2277
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.4ms)
2278
- Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
2279
544
 
545
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:48:02 +0600
2280
546
 
2281
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2282
547
 
548
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 14:48:37 +0600
549
+ Processing by TranslationHandler::TranslationsController#update as HTML
550
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"1235.022", "id"=>"en", "commit"=>"Update"}
551
+ Redirected to http://localhost:3000/translation_handler/translations
552
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
2283
553
 
2284
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2285
554
 
555
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 14:48:37 +0600
556
+ Processing by TranslationHandler::TranslationsController#index as HTML
557
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
558
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
2286
559
 
2287
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2288
- Processing by TranslationHandler::TranslationsController#new as HTML
2289
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.4ms)
2290
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
2291
560
 
561
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 14:48:38 +0600
2292
562
 
2293
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2294
563
 
564
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 14:48:38 +0600
2295
565
 
2296
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:55:24 +0600
2297
566
 
567
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 15:46:08 +0600
568
+ Processing by TranslationHandler::TranslationsController#edit as HTML
569
+ Parameters: {"id"=>"en"}
570
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (3.3ms)
571
+ Completed 200 OK in 10ms (Views: 8.0ms | ActiveRecord: 0.0ms)
2298
572
 
2299
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:55:25 +0600
2300
- Processing by TranslationHandler::TranslationsController#new as HTML
2301
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.4ms)
2302
- Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
2303
573
 
574
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 15:46:08 +0600
2304
575
 
2305
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:55:25 +0600
2306
576
 
577
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 15:46:08 +0600
2307
578
 
2308
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:55:25 +0600
2309
579
 
580
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 15:46:11 +0600
581
+ Processing by TranslationHandler::TranslationsController#update as HTML
582
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"1235.022", "id"=>"en", "commit"=>"Update"}
583
+ Redirected to http://localhost:3000/translation_handler/translations
584
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
2310
585
 
2311
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 01:56:27 +0600
2312
- Processing by TranslationHandler::TranslationsController#new as HTML
2313
- Rendered /home/bilash/projects/gemmm/translation_handler/app/views/translation_handler/translations/new.html.erb within layouts/application (37.5ms)
2314
- Completed 200 OK in 82ms (Views: 81.9ms | ActiveRecord: 0.0ms)
2315
586
 
587
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 15:46:11 +0600
588
+ Processing by TranslationHandler::TranslationsController#index as HTML
589
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.8ms)
590
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
2316
591
 
2317
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:56:27 +0600
2318
592
 
593
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 15:46:11 +0600
2319
594
 
2320
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:56:27 +0600
2321
595
 
596
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 15:46:11 +0600
2322
597
 
2323
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 01:56:44 +0600
2324
- Processing by TranslationHandler::TranslationsController#edit as HTML
2325
- Parameters: {"id"=>"devise.en"}
2326
- Rendered /home/bilash/projects/gemmm/translation_handler/app/views/translation_handler/translations/edit.html.erb within layouts/application (3.4ms)
2327
- Completed 200 OK in 13ms (Views: 7.2ms | ActiveRecord: 0.0ms)
2328
598
 
599
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 16:01:58 +0600
600
+ Processing by TranslationHandler::TranslationsController#index as HTML
601
+ Rendered translation_handler/translations/index.html.erb within layouts/application (2.2ms)
602
+ Completed 200 OK in 43ms (Views: 42.5ms | ActiveRecord: 0.0ms)
2329
603
 
2330
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 01:56:44 +0600
2331
604
 
605
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 16:01:58 +0600
2332
606
 
2333
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 01:56:44 +0600
2334
607
 
608
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 16:01:58 +0600
2335
609
 
2336
- Started GET "/translation_handler/translations/" for 127.0.0.1 at 2014-01-14 02:03:02 +0600
2337
- Processing by TranslationHandler::TranslationsController#index as HTML
2338
- Rendered translation_handler/translations/index.html.erb within layouts/application (2.9ms)
2339
- Completed 200 OK in 55ms (Views: 54.7ms | ActiveRecord: 0.0ms)
2340
610
 
611
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 16:01:59 +0600
612
+ Processing by TranslationHandler::TranslationsController#edit as HTML
613
+ Parameters: {"id"=>"en"}
614
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (2.0ms)
615
+ Completed 200 OK in 39ms (Views: 4.7ms | ActiveRecord: 0.0ms)
2341
616
 
2342
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 02:03:02 +0600
2343
617
 
618
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 16:01:59 +0600
2344
619
 
2345
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 02:03:02 +0600
2346
620
 
621
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 16:01:59 +0600
2347
622
 
2348
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 02:03:03 +0600
2349
- Processing by TranslationHandler::TranslationsController#new as HTML
2350
- Rendered translation_handler/translations/new.html.erb within layouts/application (2.2ms)
2351
- Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
2352
623
 
624
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 16:02:01 +0600
625
+ Processing by TranslationHandler::TranslationsController#update as HTML
626
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"1235.022", "id"=>"en", "commit"=>"Update"}
627
+ Completed 500 Internal Server Error in 7ms
2353
628
 
2354
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 02:03:03 +0600
629
+ NameError (uninitialized constant Psych::DBM):
630
+ /home/bilash/projects/translation_handler/app/controllers/translation_handler/translations_controller.rb:43:in `update'
631
+ actionpack (4.0.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
632
+ actionpack (4.0.1) lib/abstract_controller/base.rb:189:in `process_action'
633
+ actionpack (4.0.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
634
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
635
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__318539579__process_action__callbacks'
636
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
637
+ actionpack (4.0.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
638
+ actionpack (4.0.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
639
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
640
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `block in instrument'
641
+ activesupport (4.0.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
642
+ activesupport (4.0.1) lib/active_support/notifications.rb:159:in `instrument'
643
+ actionpack (4.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
644
+ actionpack (4.0.1) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
645
+ activerecord (4.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
646
+ actionpack (4.0.1) lib/abstract_controller/base.rb:136:in `process'
647
+ actionpack (4.0.1) lib/abstract_controller/rendering.rb:44:in `process'
648
+ actionpack (4.0.1) lib/action_controller/metal.rb:195:in `dispatch'
649
+ actionpack (4.0.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
650
+ actionpack (4.0.1) lib/action_controller/metal.rb:231:in `block in action'
651
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
652
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
653
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
654
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
655
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `each'
656
+ actionpack (4.0.1) lib/action_dispatch/journey/router.rb:59:in `call'
657
+ actionpack (4.0.1) lib/action_dispatch/routing/route_set.rb:680:in `call'
658
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
659
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
660
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
661
+ actionpack (4.0.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
662
+ actionpack (4.0.1) lib/action_dispatch/middleware/flash.rb:241:in `call'
663
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
664
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
665
+ actionpack (4.0.1) lib/action_dispatch/middleware/cookies.rb:486:in `call'
666
+ activerecord (4.0.1) lib/active_record/query_cache.rb:36:in `call'
667
+ activerecord (4.0.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
668
+ activerecord (4.0.1) lib/active_record/migration.rb:369:in `call'
669
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
670
+ activesupport (4.0.1) lib/active_support/callbacks.rb:373:in `_run__143980372__call__callbacks'
671
+ activesupport (4.0.1) lib/active_support/callbacks.rb:80:in `run_callbacks'
672
+ actionpack (4.0.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
673
+ actionpack (4.0.1) lib/action_dispatch/middleware/reloader.rb:64:in `call'
674
+ actionpack (4.0.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
675
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
676
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
677
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
678
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
679
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
680
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
681
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
682
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
683
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
684
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
685
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
686
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
687
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
688
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
689
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
690
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
691
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
692
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
693
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
694
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
695
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
696
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
697
+ /home/bilash/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
2355
698
 
2356
699
 
2357
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 02:03:03 +0600
700
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
701
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
702
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
703
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.6ms)
2358
704
 
2359
705
 
2360
- Started POST "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 02:03:11 +0600
2361
- Processing by TranslationHandler::TranslationsController#create as HTML
2362
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "language"=>"barek2k2", "commit"=>"Create"}
706
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 16:02:16 +0600
707
+ Processing by TranslationHandler::TranslationsController#update as HTML
708
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"1235.022", "id"=>"en", "commit"=>"Update"}
2363
709
  Redirected to http://localhost:3000/translation_handler/translations
2364
710
  Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
2365
711
 
2366
712
 
2367
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 02:03:11 +0600
713
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 16:02:16 +0600
2368
714
  Processing by TranslationHandler::TranslationsController#index as HTML
2369
- Rendered translation_handler/translations/index.html.erb within layouts/application (3.5ms)
2370
- Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
715
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
716
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
2371
717
 
2372
718
 
2373
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 02:03:11 +0600
719
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 16:02:16 +0600
2374
720
 
2375
721
 
2376
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 02:03:11 +0600
722
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 16:02:16 +0600
2377
723
 
2378
724
 
2379
- Started GET "/translation_handler/translations/barek2k2/edit" for 127.0.0.1 at 2014-01-14 02:03:12 +0600
725
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 16:02:17 +0600
2380
726
  Processing by TranslationHandler::TranslationsController#edit as HTML
2381
- Parameters: {"id"=>"barek2k2"}
2382
- Rendered translation_handler/translations/edit.html.erb within layouts/application (2.6ms)
2383
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
2384
-
2385
-
2386
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 02:03:12 +0600
2387
-
2388
-
2389
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 02:03:12 +0600
2390
-
2391
-
2392
- Started GET "/translation_handler/translations/new" for 127.0.0.1 at 2014-01-14 02:03:28 +0600
2393
- Processing by TranslationHandler::TranslationsController#new as HTML
2394
- Rendered translation_handler/translations/new.html.erb within layouts/application (1.4ms)
2395
- Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
727
+ Parameters: {"id"=>"en"}
728
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (1.8ms)
729
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
2396
730
 
2397
731
 
2398
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 02:03:28 +0600
732
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 16:02:17 +0600
2399
733
 
2400
734
 
2401
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 02:03:28 +0600
735
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 16:02:17 +0600
2402
736
 
2403
737
 
2404
- Started POST "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 02:03:31 +0600
2405
- Processing by TranslationHandler::TranslationsController#create as HTML
2406
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"rsQyu1mq9MGZjt5oLYKc5YFXMGqg+WYGcBfUPmVfy/M=", "language"=>"asas", "commit"=>"Create"}
2407
- Redirected to http://localhost:3000/translation_handler/translations
2408
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
738
+ Started GET "/" for 127.0.0.1 at 2014-01-21 21:11:55 +0600
739
+ Processing by Rails::WelcomeController#index as HTML
740
+ Rendered /home/bilash/.rvm/gems/ruby-2.0.0-p353/gems/railties-4.0.1/lib/rails/templates/rails/welcome/index.html.erb (1.8ms)
741
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
2409
742
 
2410
743
 
2411
- Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-14 02:03:31 +0600
744
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 21:11:57 +0600
2412
745
  Processing by TranslationHandler::TranslationsController#index as HTML
2413
- Rendered translation_handler/translations/index.html.erb within layouts/application (1.6ms)
2414
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
2415
-
2416
-
2417
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 02:03:31 +0600
2418
-
2419
-
2420
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 02:03:31 +0600
2421
-
2422
-
2423
- Started GET "/translation_handler/translations/asas/edit" for 127.0.0.1 at 2014-01-14 02:03:33 +0600
2424
- Processing by TranslationHandler::TranslationsController#edit as HTML
2425
- Parameters: {"id"=>"asas"}
2426
- Rendered translation_handler/translations/edit.html.erb within layouts/application (3.6ms)
2427
- Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
746
+ Rendered translation_handler/translations/index.html.erb within layouts/application (1.9ms)
747
+ Completed 200 OK in 40ms (Views: 39.8ms | ActiveRecord: 0.0ms)
2428
748
 
2429
749
 
2430
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 02:03:33 +0600
750
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-21 21:11:57 +0600
2431
751
 
2432
752
 
2433
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 02:03:33 +0600
753
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-21 21:11:57 +0600
2434
754
 
2435
755
 
2436
- Started GET "/translation_handler/translations/simple_form.en/edit" for 127.0.0.1 at 2014-01-14 02:03:49 +0600
756
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 21:11:59 +0600
2437
757
  Processing by TranslationHandler::TranslationsController#edit as HTML
2438
- Parameters: {"id"=>"simple_form.en"}
2439
- Rendered translation_handler/translations/edit.html.erb within layouts/application (1.7ms)
2440
- Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
758
+ Parameters: {"id"=>"en"}
759
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (4.2ms)
760
+ Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.0ms)
2441
761
 
2442
762
 
2443
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 02:03:49 +0600
763
+ Started PUT "/translation_handler/translations/en" for 127.0.0.1 at 2014-01-21 21:12:17 +0600
764
+ Processing by TranslationHandler::TranslationsController#update as HTML
765
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hA3mF48dv/5KHhBYiymokaGRNrIA+1nJSsQUl2LlOR8=", "field_1"=>"hello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdfhello test 11222 asffffffasfaffsdf", "field_2"=>"def@yahoo.com", "field_3"=>"[\"last\", \"first\"]", "field_4"=>"1235.022", "id"=>"en", "commit"=>"Update"}
766
+ Redirected to http://localhost:3000/translation_handler/translations
767
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
2444
768
 
2445
769
 
2446
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 02:03:49 +0600
770
+ Started GET "/translation_handler/translations" for 127.0.0.1 at 2014-01-21 21:12:17 +0600
771
+ Processing by TranslationHandler::TranslationsController#index as HTML
772
+ Rendered translation_handler/translations/index.html.erb within layouts/application (0.7ms)
773
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
2447
774
 
2448
775
 
2449
- Started GET "/translation_handler/translations/devise.en/edit" for 127.0.0.1 at 2014-01-14 02:04:21 +0600
776
+ Started GET "/translation_handler/translations/en/edit" for 127.0.0.1 at 2014-01-21 21:12:18 +0600
2450
777
  Processing by TranslationHandler::TranslationsController#edit as HTML
2451
- Parameters: {"id"=>"devise.en"}
2452
- Rendered translation_handler/translations/edit.html.erb within layouts/application (1.7ms)
2453
- Completed 200 OK in 7ms (Views: 4.1ms | ActiveRecord: 0.0ms)
2454
-
2455
-
2456
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-14 02:04:21 +0600
2457
-
2458
-
2459
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-14 02:04:21 +0600
778
+ Parameters: {"id"=>"en"}
779
+ Rendered translation_handler/translations/edit.html.erb within layouts/application (1.6ms)
780
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)