translatable_routes 1.3.6 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bcb323b671272f53a95fb2bf189081c2b90fa8a7
4
- data.tar.gz: 1f0e5de66aa5254091520e02e2a8f4693740b749
3
+ metadata.gz: 4fdb112feac85d739e2676a81d0c6f9411802617
4
+ data.tar.gz: e602816c7b121c6887ac5ea6864bca51a014b512
5
5
  SHA512:
6
- metadata.gz: 4b6ea0303ec82d7072d2bf56fd022607ed6cd411aa8f0c08d8786f870dd0c43908bc2f5c66b3c83c47ac3517062367d2b06f9eba710954651cc9a7d09c344c0b
7
- data.tar.gz: af2914ede89ac2f8191ff26a33a78237e9aa64d1e1f293b07d82b6d530d2319627b1054ae6ae9139c363cf2718ab0f9efb77907e7bfe5896ee258e2e9b622d73
6
+ metadata.gz: a23a515b1267587faf6b88bb526587b01e8c77721051340be7dde37310a49849863c4a8cade07d1da059a76d0219daf8b4cb6585da25a34d1392f6d7f1d9d899
7
+ data.tar.gz: b42f76c874558bff022b18e3a9acad1a5f62b4337f6835a3547362ceed9d14e01892202ffa06b8870dab442e399ca9204407668032d75975688b499bd673944c
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2015 Museways
1
+ Copyright 2015 Mathías Montossi
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,4 +1,7 @@
1
- [![Gem Version](https://badge.fury.io/rb/translatable_routes.svg)](http://badge.fury.io/rb/translatable_routes) [![Code Climate](https://codeclimate.com/github/museways/translatable_routes/badges/gpa.svg)](https://codeclimate.com/github/museways/translatable_routes) [![Build Status](https://travis-ci.org/museways/translatable_routes.svg?branch=master)](https://travis-ci.org/museways/translatable_routes) [![Dependency Status](https://gemnasium.com/museways/translatable_routes.svg)](https://gemnasium.com/museways/translatable_routes)
1
+ [![Gem Version](https://badge.fury.io/rb/translatable_routes.svg)](http://badge.fury.io/rb/translatable_routes)
2
+ [![Code Climate](https://codeclimate.com/github/mmontossi/translatable_routes/badges/gpa.svg)](https://codeclimate.com/github/mmontossi/translatable_routes)
3
+ [![Build Status](https://travis-ci.org/mmontossi/translatable_routes.svg)](https://travis-ci.org/mmontossi/translatable_routes)
4
+ [![Dependency Status](https://gemnasium.com/mmontossi/translatable_routes.svg)](https://gemnasium.com/mmontossi/translatable_routes)
2
5
 
3
6
  # Translatable Routes
4
7
 
@@ -56,7 +59,7 @@ end
56
59
 
57
60
  ## Credits
58
61
 
59
- This gem is maintained and funded by [museways](http://museways.com).
62
+ This gem is maintained and funded by [mmontossi](https://github.com/mmontossi).
60
63
 
61
64
  ## License
62
65
 
@@ -12,7 +12,7 @@ module TranslatableRoutes
12
12
  def add_route(action, options)
13
13
  if @locales
14
14
  @locales.each do |locale|
15
- if @scope[:scope_level_resource]
15
+ if @scope[:scope_level_resource] && resource_method_scope?
16
16
  original_scope_level_resource = @scope[:scope_level_resource].dup
17
17
  end
18
18
  if @scope[:path]
@@ -25,21 +25,23 @@ module TranslatableRoutes
25
25
  @scope[:path_names][key] = i18n_path(value, locale)
26
26
  end
27
27
  options[:path] = i18n_path(options[:path], locale)
28
- options[:constraints] = { locale: locale.to_s }
29
- options[:defaults] = { locale: locale.to_s }
30
- if @scope[:scope_level_resource]
28
+ (options[:constraints] ||= {}).merge!(locale: locale.to_s)
29
+ (options[:defaults] ||= {}).merge!(locale: locale.to_s)
30
+ if @scope[:scope_level_resource] && resource_method_scope?
31
+ resource = @scope[:scope_level_resource].dup
31
32
  %w(collection_name member_name).each do |method|
32
- @scope[:scope_level_resource].class_eval do
33
+ resource.class_eval do
33
34
  define_method method do
34
35
  "#{super()}_#{locale}"
35
36
  end
36
37
  end
37
38
  end
38
- elsif !options[:as].nil?
39
+ @scope[:scope_level_resource] = resource
40
+ else
39
41
  options[:as] = "#{options[:as] || action}_#{locale}"
40
42
  end
41
43
  super i18n_path(action, locale), options
42
- if @scope[:scope_level_resource]
44
+ if @scope[:scope_level_resource] && resource_method_scope?
43
45
  @scope[:scope_level_resource] = original_scope_level_resource
44
46
  end
45
47
  if @scope[:path]
@@ -48,10 +50,10 @@ module TranslatableRoutes
48
50
  @scope[:path_names] = original_path_names
49
51
  options = original_options
50
52
  end
51
- if @scope[:scope_level_resource]
53
+ if @scope[:scope_level_resource] && resource_method_scope?
52
54
  helper = name_for_action(options[:as], action)
53
55
  @set.named_routes.define_i18n_url_helper helper
54
- elsif !options[:as].nil?
56
+ else
55
57
  helper = "#{options[:as] || action}"
56
58
  if @scope[:as]
57
59
  helper.prepend "#{@scope[:as]}_"
@@ -68,16 +70,17 @@ module TranslatableRoutes
68
70
  def i18n_path(path, locale)
69
71
  case path
70
72
  when String
71
- i18n_path = []
72
- path.split('/').each do |part|
73
- next if part == ''
74
- if part[0] == ':' or part[0] == '*'
75
- i18n_path << part
73
+ path.gsub(/:?[a-z0-9_-]+/) do |match|
74
+ if match.starts_with?(':')
75
+ match
76
76
  else
77
- i18n_path << I18n.t("routes.#{part.gsub('-', '_')}", locale: locale, default: part.gsub('_', '-'))
77
+ I18n.t(
78
+ "routes.#{match.gsub('-', '_')}",
79
+ locale: locale.to_s,
80
+ default: match.gsub('_', '-')
81
+ )
78
82
  end
79
83
  end
80
- i18n_path.join('/')
81
84
  when Symbol
82
85
  path
83
86
  end
@@ -1,5 +1,5 @@
1
1
  module TranslatableRoutes
2
2
 
3
- VERSION = '1.3.6'
3
+ VERSION = '1.4.0'
4
4
 
5
5
  end
@@ -0,0 +1,6 @@
1
+ class NestedsController < ApplicationController
2
+
3
+ def index
4
+ end
5
+
6
+ end
@@ -4,5 +4,7 @@ en:
4
4
  edit: "edit"
5
5
  namespace: "namespace"
6
6
  nested: "nested"
7
+ nesteds: "nesteds"
7
8
  simple: "simple"
9
+ resource: "resource"
8
10
  resources: "resources"
@@ -4,5 +4,7 @@ es:
4
4
  edit: "editar"
5
5
  namespace: "nombre-de-espacio"
6
6
  nested: "anidado"
7
+ nesteds: "anidados"
7
8
  simple: "simple"
9
+ resource: "recurso"
8
10
  resources: "recursos"
@@ -8,7 +8,9 @@ Dummy::Application.routes.draw do
8
8
  end
9
9
  get 'simple', to: 'pages#simple', as: :simple
10
10
  get 'complex/:p1/:p2', to: 'pages#complex', as: :complex
11
- resources :resources
11
+ resources :resources do
12
+ resources :nesteds
13
+ end
12
14
  end
13
15
 
14
16
  # The priority is based upon order of creation: first created -> highest priority.
@@ -51,7 +53,7 @@ Dummy::Application.routes.draw do
51
53
  # get 'recent', on: :collection
52
54
  # end
53
55
  # end
54
-
56
+
55
57
  # Example resource route with concerns:
56
58
  # concern :toggleable do
57
59
  # post 'toggle'
@@ -1,360 +0,0 @@
1
-  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
-  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
-  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5
-  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
-  (0.1ms) SELECT version FROM "schema_migrations"
7
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
8
-
9
-
10
- Started GET "/" for 127.0.0.1 at 2014-05-18 18:41:43 -0300
11
- Processing by Rails::WelcomeController#index as HTML
12
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.1/lib/rails/templates/rails/welcome/index.html.erb (1.6ms)
13
- Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
14
-
15
-
16
- Started GET "/" for 127.0.0.1 at 2014-05-18 18:41:50 -0300
17
- Processing by Rails::WelcomeController#index as HTML
18
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.1/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
19
- Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
20
-
21
-
22
- Started GET "/" for 127.0.0.1 at 2014-05-18 18:41:50 -0300
23
- Processing by Rails::WelcomeController#index as HTML
24
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.1/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
25
- Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
26
-
27
-
28
- Started GET "/es" for 127.0.0.1 at 2014-05-18 18:41:50 -0300
29
-
30
- ActionController::RoutingError (No route matches [GET] "/es"):
31
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
32
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
33
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
34
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
35
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
36
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
37
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
38
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
39
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
40
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
41
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
42
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
43
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
44
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
45
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
46
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
47
- railties (4.1.1) lib/rails/application.rb:144:in `call'
48
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
49
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
50
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
51
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
52
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
53
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
54
-
55
-
56
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
57
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.9ms)
58
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.3ms)
59
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (41.6ms)
60
-
61
-
62
- Started GET "/es/tags" for 127.0.0.1 at 2014-05-18 18:41:50 -0300
63
-
64
- ActionController::RoutingError (No route matches [GET] "/es/tags"):
65
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
66
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
67
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
68
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
69
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
70
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
71
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
72
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
73
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
74
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
75
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
76
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
77
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
78
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
79
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
80
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
81
- railties (4.1.1) lib/rails/application.rb:144:in `call'
82
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
83
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
84
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
85
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
86
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
87
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
88
-
89
-
90
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
91
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.7ms)
92
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
93
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (30.2ms)
94
-
95
-
96
- Started GET "/es/simple" for 127.0.0.1 at 2014-05-18 18:41:53 -0300
97
- Processing by SimpleController#show as HTML
98
- Parameters: {"locale"=>"es"}
99
- Completed 500 Internal Server Error in 5ms
100
-
101
- ActionView::MissingTemplate (Missing template simple/show, application/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
102
- * "/Users/Matt/Documents/Museways/Herramientas/Rails/translatable_routes/test/dummy/app/views"
103
- ):
104
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
105
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
106
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
107
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
108
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
109
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
110
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
111
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
112
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
113
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
114
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
115
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
116
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
117
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
118
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
119
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
120
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
121
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
122
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
123
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
124
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
125
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
126
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
127
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
128
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
129
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
130
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
131
- activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
132
- activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
133
- activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `block in halting'
134
- activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `call'
135
- activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `block in halting'
136
- activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `call'
137
- activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `run_callbacks'
138
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
139
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
140
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
141
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
142
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
143
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
144
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
145
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
146
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
147
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
148
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
149
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
150
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
151
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
152
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
153
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
154
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
155
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
156
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
157
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
158
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
159
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
160
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
161
- rack (1.5.2) lib/rack/head.rb:11:in `call'
162
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
163
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
164
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
165
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
166
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
167
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
168
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
169
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
170
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
171
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
172
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
173
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
174
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
175
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
176
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
177
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
178
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
179
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
180
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
181
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
182
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
183
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
184
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
185
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
186
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
187
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
188
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
189
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
190
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
191
- railties (4.1.1) lib/rails/application.rb:144:in `call'
192
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
193
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
194
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
195
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
196
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
197
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
198
-
199
-
200
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.5ms)
201
-
202
-
203
- Started GET "/es/simple" for 127.0.0.1 at 2014-05-18 18:53:19 -0300
204
- Processing by PagesController#simple as HTML
205
- Parameters: {"locale"=>"es"}
206
- Completed 500 Internal Server Error in 6ms
207
-
208
- ActionView::MissingTemplate (Missing template pages/simple, application/simple with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
209
- * "/Users/Matt/Documents/Museways/Herramientas/Rails/translatable_routes/test/dummy/app/views"
210
- ):
211
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
212
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
213
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
214
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
215
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
216
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
217
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
218
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
219
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
220
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
221
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
222
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
223
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
224
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
225
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
226
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
227
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
228
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
229
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
230
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
231
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
232
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
233
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
234
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
235
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
236
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
237
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
238
- activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
239
- activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
240
- activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `block in halting'
241
- activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `call'
242
- activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `block in halting'
243
- activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `call'
244
- activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `run_callbacks'
245
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
246
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
247
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
248
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
249
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
250
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
251
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
252
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
253
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
254
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
255
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
256
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
257
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
258
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
259
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
260
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
261
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
262
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
263
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
264
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
265
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
266
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
267
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
268
- rack (1.5.2) lib/rack/head.rb:11:in `call'
269
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
270
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
271
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
272
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
273
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
274
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
275
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
276
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
277
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
278
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
279
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
280
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
281
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
282
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
283
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
284
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
285
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
286
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
287
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
288
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
289
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
290
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
291
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
292
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
293
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
294
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
295
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
296
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
297
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
298
- railties (4.1.1) lib/rails/application.rb:144:in `call'
299
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
300
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
301
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
302
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
303
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
304
- /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
305
-
306
-
307
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (1.2ms)
308
-
309
-
310
- Started GET "/es/simple" for 127.0.0.1 at 2014-05-18 18:54:11 -0300
311
- Processing by PagesController#simple as HTML
312
- Parameters: {"locale"=>"es"}
313
- Completed 500 Internal Server Error in 0ms
314
-
315
- NoMethodError (undefined method `[]' for nil:NilClass):
316
- app/controllers/application_controller.rb:7:in `default_url_options'
317
- app/controllers/pages_controller.rb:4:in `simple'
318
-
319
-
320
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
321
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
322
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.9ms)
323
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.5ms)
324
-
325
-
326
- Started GET "/es/simple" for 127.0.0.1 at 2014-05-18 18:54:29 -0300
327
- Processing by PagesController#simple as HTML
328
- Parameters: {"locale"=>"es"}
329
- Completed 500 Internal Server Error in 1ms
330
-
331
- ActionController::UrlGenerationError (No route matches {:action=>"simple", :controller=>"pages", :locale=>#<ActionDispatch::Request:0x007f9e0938fb68 @env={"GATEWAY_INTERFACE"=>"CGI/1.1", "PATH_INFO"=>"/es/simple", "QUERY_STRING"=>"", "REMOTE_ADDR"=>"127.0.0.1", "REMOTE_HOST"=>"127.0.0.1", "REQUEST_METHOD"=>"GET", "REQUEST_URI"=>"http://localhost:3000/es/simple", "SCRIPT_NAME"=>"", "SERVER_NAME"=>"localhost", "SERVER_PORT"=>"3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "SERVER_SOFTWARE"=>"WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)", "HTTP_HOST"=>"localhost:3000", "HTTP_ACCEPT_ENCODING"=>"gzip, deflate", "HTTP_ACCEPT"=>"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14 (KHTML, like Gecko) Version/7.0.3 Safari/537.75.14", "HTTP_ACCEPT_LANGUAGE"=>"es-es", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_CONNECTION"=>"keep-alive", "rack.version"=>[1, 2], "rack.input"=>#<StringIO:0x007f9e04f00a38>, "rack.errors"=>#<IO:<STDERR>>, "rack.multithread"=>false, "rack.multiprocess"=>false, "rack.run_once"=>false, "rack.url_scheme"=>"http", "HTTP_VERSION"=>"HTTP/1.1", "REQUEST_PATH"=>"/es/simple", "ORIGINAL_FULLPATH"=>"/es/simple", "ORIGINAL_SCRIPT_NAME"=>"", "action_dispatch.routes"=>#<ActionDispatch::Routing::RouteSet:0x007f9e03dd6898>, "action_dispatch.parameter_filter"=>[:password], "action_dispatch.redirect_filter"=>[], "action_dispatch.secret_token"=>nil, "action_dispatch.secret_key_base"=>"94bacb757cb090cba6681745bdf0b277d02b62765f5a593cf267c51ec4d2c138c51a1c414fa82a1d8b5429db29926ec56bcacbab6c2e1e74492c8c0274b65077", "action_dispatch.show_exceptions"=>true, "action_dispatch.show_detailed_exceptions"=>true, "action_dispatch.logger"=>#<ActiveSupport::Logger:0x007f9e03c032f0 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x007f9e03c032a0 @datetime_format=nil>, @formatter=#<ActiveSupport::Logger::SimpleFormatter:0x007f9e03d356c8 @datetime_format=nil>, @logdev=#<Logger::LogDevice:0x007f9e03c03188 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<File:/Users/Matt/Documents/Museways/Herramientas/Rails/translatable_routes/test/dummy/log/development.log>, @mutex=#<Logger::LogDevice::LogDeviceMutex:0x007f9e03c03160 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007f9e03c030e8>>>>, "action_dispatch.backtrace_cleaner"=>#<Rails::BacktraceCleaner:0x007f9e090481d0 @filters=[#<Proc:0x007f9e09048108@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.1/lib/rails/backtrace_cleaner.rb:10>, #<Proc:0x007f9e090480e0@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.1/lib/rails/backtrace_cleaner.rb:11>, #<Proc:0x007f9e09048090@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.1/lib/rails/backtrace_cleaner.rb:12>, #<Proc:0x007f9e09043450@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.1/lib/rails/backtrace_cleaner.rb:24>], @silencers=[#<Proc:0x007f9e09043400@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/railties-4.1.1/lib/rails/backtrace_cleaner.rb:15>]>, "action_dispatch.key_generator"=>#<ActiveSupport::CachingKeyGenerator:0x007f9e09043220 @key_generator=#<ActiveSupport::KeyGenerator:0x007f9e09043248 @secret="94bacb757cb090cba6681745bdf0b277d02b62765f5a593cf267c51ec4d2c138c51a1c414fa82a1d8b5429db29926ec56bcacbab6c2e1e74492c8c0274b65077", @iterations=1000>, @cache_keys=#<ThreadSafe::Cache:0x007f9e090431f8 @backend={"encrypted cookie64"=>"\xF5\xA6\xEE41\e\xF8\x84y\xA9\xE1\xCF\r\xF9\xC8\xFA\x9EE\xEA\xF1(\x89\xD9\xDAs\xD4\xB2\xAB\xBB\xAE\x02\xD3j=\xA7\x8D\xC1'Qg\xC6\x8Bb\f\xEB\x9DJ\xE0\xCB$Pm\x94$K+\xCF\xD8\x10\xFA\x8BB\x9E\xBB", "signed encrypted cookie64"=>"\xEC3tG\xC7qo\xA3F3=n\xBB\xC9\xAF\xA7LfyQ\xFF\xF1\xE0-\xEEz\xE1\x18\x7F'x\xC3\x15]\xD5\x00\x8Aq{\xE1\x92\a\xEE\xCAqk/\x03\xF48VJh\xF2W\x85\xDD?\xF3\x16\x1F\xE7\xF9\x92"}, @default_proc=nil>>, "action_dispatch.http_auth_salt"=>"http authentication", "action_dispatch.signed_cookie_salt"=>"signed cookie", "action_dispatch.encrypted_cookie_salt"=>"encrypted cookie", "action_dispatch.encrypted_signed_cookie_salt"=>"signed encrypted cookie", "action_dispatch.cookies_serializer"=>nil, "ROUTES_70158323201100_SCRIPT_NAME"=>"", "action_dispatch.request_id"=>"d3f2218e-ec09-44b6-9cd2-f34f566bd38a", "action_dispatch.remote_ip"=>#<ActionDispatch::RemoteIp::GetIp:0x007f9e0704ee88 @env={...}, @check_ip=true, @proxies=/
332
- ^127\.0\.0\.1$ | # localhost IPv4
333
- ^::1$ | # localhost IPv6
334
- ^fc00: | # private IPv6 range fc00
335
- ^10\. | # private IPv4 range 10.x.x.x
336
- ^172\.(1[6-9]|2[0-9]|3[0-1])\.| # private IPv4 range 172.16.0.0 .. 172.31.255.255
337
- ^192\.168\. # private IPv4 range 192.168.x.x
338
- /x>, "rack.session"=>#<ActionDispatch::Request::Session:0x7f9e04fb3e08 not yet loaded>, "rack.session.options"=>#<ActionDispatch::Request::Session::Options:0x007f9e04fb3db8 @by=#<ActionDispatch::Session::CookieStore:0x007f9e042e8200 @app=#<ActionDispatch::Flash:0x007f9e042e82a0 @app=#<ActionDispatch::ParamsParser:0x007f9e042e84f8 @app=#<Rack::Head:0x007f9e042e8818 @app=#<Rack::ConditionalGet:0x007f9e042e88b8 @app=#<Rack::ETag:0x007f9e042e88e0 @app=#<ActionDispatch::Routing::RouteSet:0x007f9e03dd6898>, @cache_control="max-age=0, private, must-revalidate", @no_cache_control="no-cache">>>, @parsers={#<Mime::Type:0x007f9e038890e8 @synonyms=["text/x-json", "application/jsonrequest"], @symbol=:json, @string="application/json">=>:json}>>, @default_options={:path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false}, @key="_dummy_session", @cookie_only=true>, @env={...}, @delegate={:path=>"/", :domain=>nil, :expire_after=>nil, :secure=>false, :httponly=>true, :defer=>false, :renew=>false}>, "action_dispatch.request.path_parameters"=>{:action=>"simple", :controller=>"pages", :locale=>"es"}, "action_controller.instance"=>#<PagesController:0x007f9e0938fc30 @_action_has_layout=true, @_routes=nil, @_headers={"Content-Type"=>"text/html"}, @_status=200, @_request=#<ActionDispatch::Request:0x007f9e0938fb68 ...>, @_response=#<ActionDispatch::Response:0x007f9e0938fb40 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007f9e0938faa0>, @stream=#<ActionDispatch::Response::Buffer:0x007f9e0938fa00 @response=#<ActionDispatch::Response:0x007f9e0938fb40 ...>, @buf=[], @closed=false>, @header={"X-Frame-Options"=>"SAMEORIGIN", "X-XSS-Protection"=>"1; mode=block", "X-Content-Type-Options"=>"nosniff"}, @status=200, @sending_file=false, @blank=false, @cv=#<MonitorMixin::ConditionVariable:0x007f9e0938f9d8 @monitor=#<ActionDispatch::Response:0x007f9e0938fb40 ...>, @cond=#<Thread::ConditionVariable:0x007f9e0938f9b0>>, @committed=false, @sending=false, @sent=false, @content_type=nil, @charset=nil, @cache_control={}, @etag=nil, @request=#<ActionDispatch::Request:0x007f9e0938fb68 ...>>, @_env={...}, @_prefixes=["pages", "application"], @_lookup_context=#<ActionView::LookupContext:0x007f9e0938f780 @details_key=nil, @details={:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}, @skip_default_locale=false, @cache=true, @prefixes=["pages", "application"], @rendered_format=nil, @view_paths=#<ActionView::PathSet:0x007f9e0938f708 @paths=[#<ActionView::OptimizedFileSystemResolver:0x007f9e04ce2878 @pattern=":prefix/:action{.:locale,}{.:formats,}{+:variants,}{.:handlers,}", @cache=#<ActionView::Resolver::Cache:0x007f9e04ce2850 @data=#<ActionView::Resolver::Cache::SmallCache:0x007f9e04ce2828 @backend={#<ActionView::LookupContext::DetailsKey:0x007f9e04682c58 @hash=-4552158567482680770>=>#<ActionView::Resolver::Cache::SmallCache:0x007f9e0467a788 @backend={"simple"=>#<ActionView::Resolver::Cache::SmallCache:0x007f9e0467a698 @backend={"pages"=>#<ActionView::Resolver::Cache::SmallCache:0x007f9e0467a558 @backend={false=>#<ActionView::Resolver::Cache::SmallCache:0x007f9e0467a3a0 @backend={}, @default_proc=nil>}, @default_proc=#<Proc:0x007f9e049b98e0@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionview-4.1.1/lib/action_view/template/resolver.rb:45 (lambda)>>, "application"=>#<ActionView::Resolver::Cache::SmallCache:0x007f9e04679428 @backend={false=>#<ActionView::Resolver::Cache::SmallCache:0x007f9e046791d0 @backend={}, @default_proc=nil>}, @default_proc=#<Proc:0x007f9e049b98e0@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionview-4.1.1/lib/action_view/template/resolver.rb:45 (lambda)>>}, @default_proc=#<Proc:0x007f9e049b98b8@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionview-4.1.1/lib/action_view/template/resolver.rb:46 (lambda)>>}, @default_proc=#<Proc:0x007f9e049b9868@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionview-4.1.1/lib/action_view/template/resolver.rb:47 (lambda)>>}, @default_proc=#<Proc:0x007f9e049b9840@/Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionview-4.1.1/lib/action_view/template/resolver.rb:48 (lambda)>>>, @path="/Users/Matt/Documents/Museways/Herramientas/Rails/translatable_routes/test/dummy/app/views">]>>, @_action_name="simple", @_response_body=nil, @marked_for_same_origin_verification=true, @_config={}, @_url_options={:host=>"localhost", :port=>3000, :protocol=>"http://", :_recall=>{:action=>"simple", :controller=>"pages", :locale=>"es"}, :locale=>#<ActionDispatch::Request:0x007f9e0938fb68 ...>}>, "action_dispatch.request.content_type"=>nil, "action_dispatch.request.request_parameters"=>{}, "rack.request.query_string"=>"", "rack.request.query_hash"=>{}, "action_dispatch.request.query_parameters"=>{}, "action_dispatch.request.parameters"=>{"action"=>"simple", "controller"=>"pages", "locale"=>"es"}, "action_dispatch.request.formats"=>[#<Mime::Type:0x007f9e038a0450 @synonyms=["application/xhtml+xml"], @symbol=:html, @string="text/html">]}, @symbolized_path_params={:action=>"simple", :controller=>"pages", :locale=>"es"}, @filtered_parameters={"action"=>"simple", "controller"=>"pages", "locale"=>"es"}, @filtered_env=nil, @filtered_path=nil, @protocol="http://", @port=3000, @method="GET", @request_method="GET", @remote_ip=nil, @original_fullpath=nil, @fullpath="/es/simple", @ip=nil, @uuid=nil>} missing required keys: [:locale]):
339
- app/controllers/pages_controller.rb:4:in `simple'
340
-
341
-
342
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
343
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
344
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
345
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.3ms)
346
-
347
-
348
- Started GET "/es/simple" for 127.0.0.1 at 2014-05-18 18:54:39 -0300
349
- Processing by PagesController#simple as HTML
350
- Parameters: {"locale"=>"es"}
351
- Completed 500 Internal Server Error in 0ms
352
-
353
- ActionController::UrlGenerationError (No route matches {:action=>"simple", :controller=>"pages", :locale=>nil} missing required keys: [:locale]):
354
- app/controllers/pages_controller.rb:4:in `simple'
355
-
356
-
357
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
358
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
359
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
360
- Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)