translation_handler 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +34 -0
  4. data/app/controllers/translation_handler/application_controller.rb +4 -0
  5. data/app/controllers/translation_handler/translations_controller.rb +74 -0
  6. data/app/views/translation_handler/translations/edit.html.erb +6 -0
  7. data/app/views/translation_handler/translations/index.html.erb +7 -0
  8. data/app/views/translation_handler/translations/new.html.erb +4 -0
  9. data/config/routes.rb +5 -0
  10. data/lib/generators/translation_views/USAGE +8 -0
  11. data/lib/generators/translation_views/translation_views_generator.rb +10 -0
  12. data/lib/tasks/translation_handler_tasks.rake +4 -0
  13. data/lib/translation_handler.rb +4 -0
  14. data/lib/translation_handler/engine.rb +7 -0
  15. data/lib/translation_handler/version.rb +3 -0
  16. data/test/dummy/README.rdoc +28 -0
  17. data/test/dummy/Rakefile +6 -0
  18. data/test/dummy/app/assets/javascripts/application.js +13 -0
  19. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  20. data/test/dummy/app/controllers/application_controller.rb +5 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  23. data/test/dummy/app/views/translation_handler/translations/edit.html.erb +6 -0
  24. data/test/dummy/app/views/translation_handler/translations/index.html.erb +10 -0
  25. data/test/dummy/app/views/translation_handler/translations/new.html.erb +4 -0
  26. data/test/dummy/bin/bundle +3 -0
  27. data/test/dummy/bin/rails +4 -0
  28. data/test/dummy/bin/rake +4 -0
  29. data/test/dummy/config.ru +4 -0
  30. data/test/dummy/config/application.rb +23 -0
  31. data/test/dummy/config/boot.rb +5 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +29 -0
  35. data/test/dummy/config/environments/production.rb +80 -0
  36. data/test/dummy/config/environments/test.rb +36 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  39. data/test/dummy/config/initializers/inflections.rb +16 -0
  40. data/test/dummy/config/initializers/mime_types.rb +5 -0
  41. data/test/dummy/config/initializers/secret_token.rb +12 -0
  42. data/test/dummy/config/initializers/session_store.rb +3 -0
  43. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/dummy/config/locales/en.yml +7 -0
  45. data/test/dummy/config/routes.rb +59 -0
  46. data/test/dummy/db/development.sqlite3 +0 -0
  47. data/test/dummy/log/development.log +687 -0
  48. data/test/dummy/log/test.log +20 -0
  49. data/test/dummy/public/404.html +58 -0
  50. data/test/dummy/public/422.html +58 -0
  51. data/test/dummy/public/500.html +57 -0
  52. data/test/dummy/public/favicon.ico +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  59. data/test/integration/navigation_test.rb +10 -0
  60. data/test/test_helper.rb +15 -0
  61. data/test/translation_handler_test.rb +7 -0
  62. metadata +156 -0
@@ -0,0 +1,80 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation can not be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+ end
@@ -0,0 +1,36 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ #config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '7d47b8c7fc3b9663b250b05a0b5ee2b915085537ee02e2a0c4a2ba92922cd07cc862691168fafcb028411a9e278ffaa83f2f261a10e80e2c219f288c36f79e81'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,7 @@
1
+ ---
2
+ :en:
3
+ :hello: hello test
4
+ :user:
5
+ :attributes:
6
+ :email: def@yahoo.com
7
+ :name: last first
@@ -0,0 +1,59 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+
57
+ resources :kolas
58
+
59
+ end
File without changes
@@ -0,0 +1,687 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-01-13 20:31:59 +0600
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