rails_limiter 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +46 -0
  4. data/Rakefile +38 -0
  5. data/lib/rails_limiter.rb +4 -0
  6. data/lib/rails_limiter/configuration.rb +5 -0
  7. data/lib/rails_limiter/init.rb +13 -0
  8. data/lib/rails_limiter/rails_limiter.rb +39 -0
  9. data/lib/rails_limiter/railtie.rb +9 -0
  10. data/lib/rails_limiter/version.rb +3 -0
  11. data/lib/tasks/rails_limiter_tasks.rake +4 -0
  12. data/test/dummy/README.rdoc +261 -0
  13. data/test/dummy/Rakefile +7 -0
  14. data/test/dummy/app/assets/javascripts/application.js +15 -0
  15. data/test/dummy/app/assets/javascripts/test.js +2 -0
  16. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  17. data/test/dummy/app/assets/stylesheets/test.css +4 -0
  18. data/test/dummy/app/controllers/application_controller.rb +3 -0
  19. data/test/dummy/app/controllers/test_controller.rb +10 -0
  20. data/test/dummy/app/helpers/application_helper.rb +2 -0
  21. data/test/dummy/app/helpers/test_helper.rb +2 -0
  22. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  23. data/test/dummy/app/views/test/index.html.erb +1 -0
  24. data/test/dummy/app/views/test/redirect.html.erb +1 -0
  25. data/test/dummy/config.ru +4 -0
  26. data/test/dummy/config/application.rb +59 -0
  27. data/test/dummy/config/boot.rb +10 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +37 -0
  31. data/test/dummy/config/environments/production.rb +67 -0
  32. data/test/dummy/config/environments/test.rb +37 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/inflections.rb +15 -0
  35. data/test/dummy/config/initializers/mime_types.rb +5 -0
  36. data/test/dummy/config/initializers/rails_limiter.rb +3 -0
  37. data/test/dummy/config/initializers/secret_token.rb +7 -0
  38. data/test/dummy/config/initializers/session_store.rb +8 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/dummy/config/locales/en.yml +5 -0
  41. data/test/dummy/config/routes.rb +7 -0
  42. data/test/dummy/db/development.sqlite3 +0 -0
  43. data/test/dummy/db/test.sqlite3 +0 -0
  44. data/test/dummy/log/development.log +1076 -0
  45. data/test/dummy/log/test.log +52 -0
  46. data/test/dummy/public/404.html +26 -0
  47. data/test/dummy/public/422.html +26 -0
  48. data/test/dummy/public/500.html +25 -0
  49. data/test/dummy/public/favicon.ico +0 -0
  50. data/test/dummy/script/rails +6 -0
  51. data/test/dummy/test/functional/test_controller_test.rb +18 -0
  52. data/test/dummy/test/unit/helpers/test_helper_test.rb +4 -0
  53. data/test/dummy/tmp/cache/assets/C44/F80/sprockets%2Fb4a3a67d546c3080b8685930021d4821 +0 -0
  54. data/test/dummy/tmp/cache/assets/C63/420/sprockets%2F5daa64d9601a1dd14726112003d08364 +0 -0
  55. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  56. data/test/dummy/tmp/cache/assets/CD9/1E0/sprockets%2F293460f7bea2aea456231b769212f36f +0 -0
  57. data/test/dummy/tmp/cache/assets/CEC/220/sprockets%2F3593fa0f36286c3f12845a83bd937ed8 +0 -0
  58. data/test/dummy/tmp/cache/assets/CEE/CC0/sprockets%2Fa955dc6f427c92e2d7386ec53824157b +0 -0
  59. data/test/dummy/tmp/cache/assets/D16/860/sprockets%2Fb45890d98668c132fee5cae4b15320d9 +0 -0
  60. data/test/dummy/tmp/cache/assets/D19/490/sprockets%2F949b38fc755d354064c004eb5f6b39fc +0 -0
  61. data/test/dummy/tmp/cache/assets/D20/260/sprockets%2F7544655fdf8fa2516fa2d508c8e9291d +0 -0
  62. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  63. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  64. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  65. data/test/dummy/tmp/cache/assets/D64/C60/sprockets%2F2d1c7e7a64aaaa07b94846dd251db329 +0 -0
  66. data/test/dummy/tmp/cache/assets/D65/600/sprockets%2Fdaa0e3c217673cb0ebb89d97438a1b80 +0 -0
  67. data/test/dummy/tmp/cache/assets/D8C/B60/sprockets%2Fb47d6c7e37ef89fe14e318a8d676e38c +0 -0
  68. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  69. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  70. data/test/dummy/tmp/cache/assets/E1C/E60/sprockets%2Fb9dc6ffd9a482f898cedbfd06f46a558 +0 -0
  71. data/test/rails_limiter_test.rb +7 -0
  72. data/test/test_helper.rb +15 -0
  73. metadata +203 -0
File without changes
File without changes
@@ -0,0 +1,1076 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+
4
+
5
+ Started GET "/" for 127.0.0.1 at 2013-07-15 10:04:01 +0200
6
+
7
+ ActionController::RoutingError (No route matches [GET] "/"):
8
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
9
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
11
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
12
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
13
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
14
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
15
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
16
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
17
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
18
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
19
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
20
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
21
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
22
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
23
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
24
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
25
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
26
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
27
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
28
+
29
+
30
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
31
+
32
+
33
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:04:06 +0200
34
+
35
+ ArgumentError (wrong number of arguments (1 for 2..3)):
36
+ /Users/jseveno/Documents/Developpement/Rails/rails3/idolcamp/rails_limiter/lib/rails_limiter/limiter.rb:19:in `process'
37
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
38
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
39
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
40
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
41
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
42
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
43
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
44
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
45
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
46
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
47
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
48
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
49
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
50
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
51
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
52
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
53
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
54
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
55
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
56
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
57
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
58
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
59
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__398873864943404298__call__1934038104990940903__callbacks'
60
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
61
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
62
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
63
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
64
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
65
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
66
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
67
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
68
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
69
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
70
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
71
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
72
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
73
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
74
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
75
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
76
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
77
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
78
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
79
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
80
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
81
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
82
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
83
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
84
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
85
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
86
+
87
+
88
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
89
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
90
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.3ms)
91
+ Connecting to database specified by database.yml
92
+
93
+
94
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:05:20 +0200
95
+
96
+ NoMethodError (undefined method `get' for nil:NilClass):
97
+ /Users/jseveno/Documents/Developpement/Rails/rails3/idolcamp/rails_limiter/lib/rails_limiter/limiter.rb:22:in `process'
98
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
99
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
100
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
101
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
102
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
103
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
104
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
105
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
106
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
107
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
108
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
109
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
110
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
111
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
112
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
113
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
114
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
115
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
116
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
117
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
118
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
119
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
120
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3482628334297426725__call__1191271709203133536__callbacks'
121
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
122
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
123
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
124
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
125
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
126
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
127
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
128
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
129
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
130
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
131
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
132
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
133
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
134
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
135
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
136
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
137
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
138
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
139
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
140
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
141
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
142
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
143
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
144
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
145
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
146
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
147
+
148
+
149
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
150
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.7ms)
151
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.6ms)
152
+ Connecting to database specified by database.yml
153
+
154
+
155
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:05:55 +0200
156
+
157
+ AbstractController::ActionNotFound (The action 'index' could not be found for TestController):
158
+ actionpack (3.2.13) lib/abstract_controller/base.rb:116:in `process'
159
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
160
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
161
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
162
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
163
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
164
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
165
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
166
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
167
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
168
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
169
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
170
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
171
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
172
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
173
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
174
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
175
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
176
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
177
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
178
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
179
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
180
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
181
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
182
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4087049753930262109__call__73814565622058779__callbacks'
183
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
184
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
185
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
186
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
187
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
188
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
189
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
190
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
191
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
192
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
193
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
194
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
195
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
196
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
197
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
198
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
199
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
200
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
201
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
202
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
203
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
204
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
205
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
206
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
207
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
208
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
209
+
210
+
211
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
212
+ Connecting to database specified by database.yml
213
+ Connecting to database specified by database.yml
214
+
215
+
216
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:07:35 +0200
217
+
218
+ ArgumentError (wrong number of arguments (1 for 2..3)):
219
+ /Users/jseveno/Documents/Developpement/Rails/rails3/idolcamp/rails_limiter/lib/rails_limiter/limiter.rb:19:in `process'
220
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
221
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
222
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
223
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
224
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
225
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
226
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
227
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
228
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
229
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
230
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
231
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
232
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
233
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
234
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
235
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
236
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
237
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
238
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
239
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
240
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
241
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
242
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3253371659724244915__call__2843609501696718742__callbacks'
243
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
244
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
245
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
246
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
247
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
248
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
249
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
250
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
251
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
252
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
253
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
254
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
255
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
256
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
257
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
258
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
259
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
260
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
261
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
262
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
263
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
264
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
265
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
266
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
267
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
268
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
269
+
270
+
271
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
272
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.9ms)
273
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (28.1ms)
274
+ Connecting to database specified by database.yml
275
+
276
+
277
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:08:16 +0200
278
+
279
+ AbstractController::ActionNotFound (The action 'index' could not be found for TestController):
280
+ actionpack (3.2.13) lib/abstract_controller/base.rb:116:in `process'
281
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
282
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
283
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
284
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
285
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
286
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
287
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
288
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
289
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
290
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
291
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
292
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
293
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
294
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
295
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
296
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
297
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
298
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
299
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
300
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
301
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
302
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
303
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
304
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2071504891450416006__call__2390454653377356627__callbacks'
305
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
306
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
307
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
308
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
309
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
310
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
311
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
312
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
313
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
314
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
315
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
316
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
317
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
318
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
319
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
320
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
321
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
322
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
323
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
324
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
325
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
326
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
327
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
328
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
329
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
330
+ /Users/jseveno/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
331
+
332
+
333
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
334
+
335
+
336
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:08:59 +0200
337
+ Processing by TestController#index as HTML
338
+ Rendered test/index.html.erb within layouts/application (0.3ms)
339
+ Compiled test.css (0ms) (pid 1920)
340
+ Compiled application.css (5ms) (pid 1920)
341
+ Compiled jquery.js (3ms) (pid 1920)
342
+ Compiled jquery_ujs.js (0ms) (pid 1920)
343
+ Compiled test.js (0ms) (pid 1920)
344
+ Compiled application.js (30ms) (pid 1920)
345
+ Completed 200 OK in 97ms (Views: 96.9ms | ActiveRecord: 0.0ms)
346
+
347
+
348
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:08:59 +0200
349
+ Served asset /application.css - 200 OK (9ms)
350
+
351
+
352
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:08:59 +0200
353
+ Served asset /test.css - 200 OK (1ms)
354
+
355
+
356
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:08:59 +0200
357
+ Served asset /application.js - 200 OK (3ms)
358
+
359
+
360
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:08:59 +0200
361
+ Served asset /jquery.js - 200 OK (1ms)
362
+
363
+
364
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:08:59 +0200
365
+ Served asset /test.js - 200 OK (1ms)
366
+
367
+
368
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:08:59 +0200
369
+ Served asset /jquery_ujs.js - 200 OK (22ms)
370
+ Connecting to database specified by database.yml
371
+
372
+
373
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:13:46 +0200
374
+ Processing by TestController#index as HTML
375
+ Rendered test/index.html.erb within layouts/application (1.0ms)
376
+ Completed 200 OK in 41ms (Views: 40.7ms | ActiveRecord: 0.0ms)
377
+
378
+
379
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:46 +0200
380
+ Served asset /jquery.js - 304 Not Modified (5ms)
381
+
382
+
383
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:13:46 +0200
384
+ Served asset /application.css - 304 Not Modified (2ms)
385
+
386
+
387
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:13:46 +0200
388
+ Served asset /test.css - 304 Not Modified (1ms)
389
+
390
+
391
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:46 +0200
392
+ Served asset /application.js - 304 Not Modified (22ms)
393
+
394
+
395
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:46 +0200
396
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
397
+
398
+
399
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:46 +0200
400
+ Served asset /test.js - 304 Not Modified (1ms)
401
+
402
+
403
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:13:49 +0200
404
+ Processing by TestController#index as HTML
405
+ Rendered test/index.html.erb within layouts/application (0.0ms)
406
+ Completed 200 OK in 2ms (Views: 2.4ms | ActiveRecord: 0.0ms)
407
+
408
+
409
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:49 +0200
410
+ Served asset /jquery.js - 304 Not Modified (0ms)
411
+
412
+
413
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:13:49 +0200
414
+ Served asset /application.css - 304 Not Modified (0ms)
415
+
416
+
417
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:49 +0200
418
+ Served asset /application.js - 304 Not Modified (0ms)
419
+
420
+
421
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:49 +0200
422
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
423
+
424
+
425
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:49 +0200
426
+ Served asset /test.js - 304 Not Modified (0ms)
427
+
428
+
429
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:13:49 +0200
430
+ Served asset /test.css - 304 Not Modified (0ms)
431
+
432
+
433
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:13:51 +0200
434
+ Processing by TestController#index as HTML
435
+ Rendered test/index.html.erb within layouts/application (0.0ms)
436
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
437
+
438
+
439
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:13:51 +0200
440
+ Served asset /application.css - 304 Not Modified (0ms)
441
+
442
+
443
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:13:51 +0200
444
+ Served asset /test.css - 304 Not Modified (0ms)
445
+
446
+
447
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:51 +0200
448
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
449
+
450
+
451
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:51 +0200
452
+ Served asset /test.js - 304 Not Modified (0ms)
453
+
454
+
455
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:51 +0200
456
+ Served asset /jquery.js - 304 Not Modified (0ms)
457
+
458
+
459
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:13:51 +0200
460
+ Served asset /application.js - 304 Not Modified (0ms)
461
+
462
+
463
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:14:02 +0200
464
+ Processing by TestController#index as HTML
465
+ Completed 500 Internal Server Error in 0ms
466
+
467
+ ArgumentError (wrong number of arguments (3 for 4)):
468
+ app/controllers/test_controller.rb:3:in `block in <class:TestController>'
469
+
470
+
471
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
472
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
473
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms)
474
+
475
+
476
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:14:32 +0200
477
+ Processing by TestController#index as HTML
478
+ Completed 500 Internal Server Error in 0ms
479
+
480
+ NoMethodError (undefined method `get' for nil:NilClass):
481
+ app/controllers/test_controller.rb:3:in `block in <class:TestController>'
482
+
483
+
484
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
485
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
486
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@idolcamp-rails3/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.3ms)
487
+ Connecting to database specified by database.yml
488
+ Connecting to database specified by database.yml
489
+
490
+
491
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:18:38 +0200
492
+ Processing by TestController#index as HTML
493
+ Rendered test/index.html.erb within layouts/application (0.6ms)
494
+ Completed 200 OK in 17ms (Views: 13.8ms | ActiveRecord: 0.0ms)
495
+
496
+
497
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:18:38 +0200
498
+ Served asset /application.css - 304 Not Modified (6ms)
499
+
500
+
501
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:18:38 +0200
502
+ Served asset /test.css - 304 Not Modified (3ms)
503
+
504
+
505
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:18:38 +0200
506
+ Served asset /jquery.js - 304 Not Modified (1ms)
507
+
508
+
509
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:18:38 +0200
510
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
511
+
512
+
513
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:18:38 +0200
514
+ Served asset /test.js - 304 Not Modified (1ms)
515
+
516
+
517
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:18:38 +0200
518
+ Served asset /application.js - 304 Not Modified (3ms)
519
+
520
+
521
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:18:42 +0200
522
+ Processing by TestController#index as HTML
523
+ Rendered test/index.html.erb within layouts/application (0.0ms)
524
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
525
+
526
+
527
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:18:42 +0200
528
+ Served asset /application.css - 304 Not Modified (0ms)
529
+
530
+
531
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:18:42 +0200
532
+ Served asset /test.css - 304 Not Modified (0ms)
533
+
534
+
535
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:18:42 +0200
536
+ Served asset /jquery.js - 304 Not Modified (0ms)
537
+
538
+
539
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:18:42 +0200
540
+ Served asset /test.js - 304 Not Modified (0ms)
541
+
542
+
543
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:18:42 +0200
544
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
545
+
546
+
547
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:18:42 +0200
548
+ Served asset /application.js - 304 Not Modified (0ms)
549
+
550
+
551
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:18:44 +0200
552
+ Processing by TestController#index as HTML
553
+ Redirected to http://www.google.fr
554
+ Filter chain halted as #<Proc:0x007fa276bc9c40@/Users/jseveno/Documents/Developpement/Rails/rails3/idolcamp/rails_limiter/test/dummy/app/controllers/test_controller.rb:2> rendered or redirected
555
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
556
+
557
+
558
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:21:21 +0200
559
+ Processing by TestController#index as HTML
560
+ Rendered test/index.html.erb within layouts/application (0.0ms)
561
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms)
562
+
563
+
564
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:21:22 +0200
565
+ Served asset /application.css - 304 Not Modified (0ms)
566
+
567
+
568
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:21:22 +0200
569
+ Served asset /test.css - 304 Not Modified (0ms)
570
+
571
+
572
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:21:22 +0200
573
+ Served asset /jquery.js - 304 Not Modified (0ms)
574
+
575
+
576
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:21:22 +0200
577
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
578
+
579
+
580
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:21:22 +0200
581
+ Served asset /test.js - 304 Not Modified (0ms)
582
+
583
+
584
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:21:22 +0200
585
+ Served asset /application.js - 304 Not Modified (0ms)
586
+ Connecting to database specified by database.yml
587
+ Connecting to database specified by database.yml
588
+ Connecting to database specified by database.yml
589
+
590
+
591
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:24:05 +0200
592
+ Processing by TestController#index as HTML
593
+ Rendered test/index.html.erb within layouts/application (1.1ms)
594
+ Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.0ms)
595
+
596
+
597
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:24:05 +0200
598
+ Served asset /test.css - 304 Not Modified (2ms)
599
+
600
+
601
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:24:05 +0200
602
+ Served asset /application.css - 304 Not Modified (1ms)
603
+
604
+
605
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:05 +0200
606
+ Served asset /jquery.js - 304 Not Modified (19ms)
607
+
608
+
609
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:05 +0200
610
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
611
+
612
+
613
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:05 +0200
614
+ Served asset /test.js - 304 Not Modified (1ms)
615
+
616
+
617
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:05 +0200
618
+ Served asset /application.js - 304 Not Modified (3ms)
619
+
620
+
621
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:24:07 +0200
622
+ Processing by TestController#index as HTML
623
+ Rendered test/index.html.erb within layouts/application (0.0ms)
624
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
625
+
626
+
627
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:24:07 +0200
628
+ Served asset /application.css - 304 Not Modified (0ms)
629
+
630
+
631
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:24:07 +0200
632
+ Served asset /test.css - 304 Not Modified (0ms)
633
+
634
+
635
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:07 +0200
636
+ Served asset /jquery.js - 304 Not Modified (0ms)
637
+
638
+
639
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:07 +0200
640
+ Served asset /test.js - 304 Not Modified (0ms)
641
+
642
+
643
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:07 +0200
644
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
645
+
646
+
647
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:07 +0200
648
+ Served asset /application.js - 304 Not Modified (0ms)
649
+
650
+
651
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 10:24:09 +0200
652
+ Processing by TestController#index as HTML
653
+ Redirected to http://0.0.0.0:3000/test/redirect
654
+ Filter chain halted as #<Proc:0x007fb468c3c598@/Users/jseveno/Documents/Developpement/Rails/rails3/idolcamp/rails_limiter/test/dummy/app/controllers/test_controller.rb:2> rendered or redirected
655
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
656
+
657
+
658
+ Started GET "/test/redirect" for 127.0.0.1 at 2013-07-15 10:24:09 +0200
659
+ Processing by TestController#redirect as HTML
660
+ Rendered test/redirect.html.erb within layouts/application (0.3ms)
661
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
662
+
663
+
664
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:24:09 +0200
665
+ Served asset /application.css - 304 Not Modified (0ms)
666
+
667
+
668
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:09 +0200
669
+ Served asset /test.js - 304 Not Modified (0ms)
670
+
671
+
672
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:24:09 +0200
673
+ Served asset /test.css - 304 Not Modified (0ms)
674
+
675
+
676
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:09 +0200
677
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
678
+
679
+
680
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:09 +0200
681
+ Served asset /jquery.js - 304 Not Modified (0ms)
682
+
683
+
684
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:24:09 +0200
685
+ Served asset /application.js - 304 Not Modified (0ms)
686
+ Connecting to database specified by database.yml
687
+
688
+
689
+ Started GET "/test/" for 127.0.0.1 at 2013-07-15 10:38:35 +0200
690
+ Processing by TestController#index as HTML
691
+ Rendered test/index.html.erb within layouts/application (2.2ms)
692
+ Completed 200 OK in 34ms (Views: 33.8ms | ActiveRecord: 0.0ms)
693
+
694
+
695
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:38:35 +0200
696
+ Served asset /application.css - 304 Not Modified (7ms)
697
+
698
+
699
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:38:35 +0200
700
+ Served asset /test.css - 304 Not Modified (1ms)
701
+
702
+
703
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:35 +0200
704
+ Served asset /jquery.js - 304 Not Modified (1ms)
705
+
706
+
707
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:35 +0200
708
+ Served asset /test.js - 304 Not Modified (1ms)
709
+
710
+
711
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:35 +0200
712
+ Served asset /application.js - 304 Not Modified (3ms)
713
+
714
+
715
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:35 +0200
716
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
717
+
718
+
719
+ Started GET "/test/" for 127.0.0.1 at 2013-07-15 10:38:37 +0200
720
+ Processing by TestController#index as HTML
721
+ Rendered test/index.html.erb within layouts/application (0.0ms)
722
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
723
+
724
+
725
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:38:37 +0200
726
+ Served asset /application.css - 304 Not Modified (0ms)
727
+
728
+
729
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:38:37 +0200
730
+ Served asset /test.css - 304 Not Modified (0ms)
731
+
732
+
733
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:37 +0200
734
+ Served asset /jquery.js - 304 Not Modified (0ms)
735
+
736
+
737
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:37 +0200
738
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
739
+
740
+
741
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:37 +0200
742
+ Served asset /application.js - 304 Not Modified (0ms)
743
+
744
+
745
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:37 +0200
746
+ Served asset /test.js - 304 Not Modified (0ms)
747
+
748
+
749
+ Started GET "/test/" for 127.0.0.1 at 2013-07-15 10:38:38 +0200
750
+ Processing by TestController#index as HTML
751
+ Redirected to http://0.0.0.0:3000/test/redirect
752
+ Filter chain halted as #<Proc:0x007fda9387d618@/Users/jseveno/Documents/Developpement/Rails/rails3/idolcamp/rails_limiter/test/dummy/app/controllers/test_controller.rb:2> rendered or redirected
753
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
754
+
755
+
756
+ Started GET "/test/redirect" for 127.0.0.1 at 2013-07-15 10:38:38 +0200
757
+ Processing by TestController#redirect as HTML
758
+ Rendered test/redirect.html.erb within layouts/application (0.3ms)
759
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
760
+
761
+
762
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 10:38:38 +0200
763
+ Served asset /application.css - 304 Not Modified (0ms)
764
+
765
+
766
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:38 +0200
767
+ Served asset /jquery.js - 304 Not Modified (0ms)
768
+
769
+
770
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 10:38:38 +0200
771
+ Served asset /test.css - 304 Not Modified (0ms)
772
+
773
+
774
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:38 +0200
775
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
776
+
777
+
778
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:38 +0200
779
+ Served asset /application.js - 304 Not Modified (0ms)
780
+
781
+
782
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 10:38:38 +0200
783
+ Served asset /test.js - 304 Not Modified (0ms)
784
+ Connecting to database specified by database.yml
785
+
786
+
787
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 12:53:14 +0200
788
+ Processing by TestController#index as HTML
789
+ Rendered test/index.html.erb within layouts/application (1.0ms)
790
+ Compiled jquery.js (3ms) (pid 4774)
791
+ Compiled jquery_ujs.js (0ms) (pid 4774)
792
+ Compiled application.js (14ms) (pid 4774)
793
+ Completed 200 OK in 57ms (Views: 56.1ms | ActiveRecord: 0.0ms)
794
+
795
+
796
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 12:53:14 +0200
797
+ Served asset /application.css - 304 Not Modified (6ms)
798
+
799
+
800
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:14 +0200
801
+ Served asset /test.js - 304 Not Modified (1ms)
802
+
803
+
804
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 12:53:14 +0200
805
+ Served asset /test.css - 304 Not Modified (1ms)
806
+
807
+
808
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:14 +0200
809
+ Served asset /application.js - 304 Not Modified (3ms)
810
+
811
+
812
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:14 +0200
813
+ Served asset /jquery.js - 304 Not Modified (21ms)
814
+
815
+
816
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:14 +0200
817
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
818
+
819
+
820
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 12:53:17 +0200
821
+ Processing by TestController#index as HTML
822
+ Rendered test/index.html.erb within layouts/application (0.0ms)
823
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
824
+
825
+
826
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 12:53:17 +0200
827
+ Served asset /test.css - 304 Not Modified (0ms)
828
+
829
+
830
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:18 +0200
831
+ Served asset /test.js - 304 Not Modified (0ms)
832
+
833
+
834
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:18 +0200
835
+ Served asset /application.js - 304 Not Modified (0ms)
836
+
837
+
838
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:18 +0200
839
+ Served asset /jquery.js - 304 Not Modified (0ms)
840
+
841
+
842
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:18 +0200
843
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
844
+
845
+
846
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 12:53:18 +0200
847
+ Served asset /application.css - 304 Not Modified (0ms)
848
+
849
+
850
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:18 +0200
851
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
852
+
853
+
854
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:18 +0200
855
+ Served asset /test.js - 304 Not Modified (0ms)
856
+
857
+
858
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:18 +0200
859
+ Served asset /application.js - 304 Not Modified (0ms)
860
+
861
+
862
+ Started GET "/test" for 127.0.0.1 at 2013-07-15 12:53:19 +0200
863
+ Processing by TestController#index as HTML
864
+ Redirected to http://0.0.0.0:3000/test/redirect
865
+ Filter chain halted as #<Proc:0x007f873cd1cf48@/Users/jseveno/Desktop/rails_limiter/test/dummy/app/controllers/test_controller.rb:2> rendered or redirected
866
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
867
+
868
+
869
+ Started GET "/test/redirect" for 127.0.0.1 at 2013-07-15 12:53:19 +0200
870
+ Processing by TestController#redirect as HTML
871
+ Rendered test/redirect.html.erb within layouts/application (0.3ms)
872
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
873
+
874
+
875
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 12:53:19 +0200
876
+ Served asset /application.css - 304 Not Modified (0ms)
877
+
878
+
879
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:19 +0200
880
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
881
+
882
+
883
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:19 +0200
884
+ Served asset /jquery.js - 304 Not Modified (0ms)
885
+
886
+
887
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 12:53:19 +0200
888
+ Served asset /test.css - 304 Not Modified (0ms)
889
+
890
+
891
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:19 +0200
892
+ Served asset /test.js - 304 Not Modified (0ms)
893
+
894
+
895
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:19 +0200
896
+ Served asset /application.js - 304 Not Modified (0ms)
897
+
898
+
899
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 12:53:19 +0200
900
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
901
+ Connecting to database specified by database.yml
902
+ Connecting to database specified by database.yml
903
+ Connecting to database specified by database.yml
904
+
905
+
906
+ Started GET "/test/" for 127.0.0.1 at 2013-07-15 13:03:38 +0200
907
+ Processing by TestController#index as HTML
908
+ Rendered test/index.html.erb within layouts/application (1.3ms)
909
+ Completed 200 OK in 91ms (Views: 89.6ms | ActiveRecord: 0.0ms)
910
+
911
+
912
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 13:03:38 +0200
913
+ Served asset /application.css - 304 Not Modified (2ms)
914
+
915
+
916
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 13:03:38 +0200
917
+ Served asset /jquery.js - 304 Not Modified (3ms)
918
+
919
+
920
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 13:03:38 +0200
921
+ Served asset /test.css - 304 Not Modified (5ms)
922
+
923
+
924
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 13:03:38 +0200
925
+ Served asset /test.js - 304 Not Modified (1ms)
926
+
927
+
928
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 13:03:38 +0200
929
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
930
+
931
+
932
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 13:03:38 +0200
933
+ Served asset /application.js - 304 Not Modified (4ms)
934
+ Connecting to database specified by database.yml
935
+
936
+
937
+ Started GET "/test/" for 127.0.0.1 at 2013-07-15 13:04:45 +0200
938
+ Processing by TestController#index as HTML
939
+ Completed 500 Internal Server Error in 2ms
940
+
941
+ NoMethodError (undefined method `limit' for #<TestController:0x007fb24dce1df8>):
942
+ app/controllers/test_controller.rb:3:in `block in <class:TestController>'
943
+
944
+
945
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@rails_limiter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
946
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@rails_limiter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
947
+ Rendered /Users/jseveno/.rvm/gems/ruby-2.0.0-p247@rails_limiter/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
948
+ Connecting to database specified by database.yml
949
+
950
+
951
+ Started GET "/test/" for 127.0.0.1 at 2013-07-15 13:08:13 +0200
952
+ Processing by TestController#index as HTML
953
+ Rendered test/index.html.erb within layouts/application (0.6ms)
954
+ Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.0ms)
955
+
956
+
957
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 13:08:13 +0200
958
+ Served asset /test.css - 304 Not Modified (2ms)
959
+
960
+
961
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 13:08:13 +0200
962
+ Served asset /application.css - 304 Not Modified (3ms)
963
+
964
+
965
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 13:08:13 +0200
966
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
967
+
968
+
969
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 13:08:13 +0200
970
+ Served asset /test.js - 304 Not Modified (1ms)
971
+
972
+
973
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 13:08:13 +0200
974
+ Served asset /jquery.js - 304 Not Modified (1ms)
975
+
976
+
977
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 13:08:13 +0200
978
+ Served asset /application.js - 304 Not Modified (3ms)
979
+ Connecting to database specified by database.yml
980
+
981
+
982
+ Started GET "/test/" for 127.0.0.1 at 2013-07-15 14:28:59 +0200
983
+ Processing by TestController#index as HTML
984
+ Rendered test/index.html.erb within layouts/application (1.7ms)
985
+ Completed 200 OK in 37ms (Views: 36.7ms | ActiveRecord: 0.0ms)
986
+
987
+
988
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 14:28:59 +0200
989
+ Served asset /application.css - 304 Not Modified (8ms)
990
+
991
+
992
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 14:28:59 +0200
993
+ Served asset /test.css - 304 Not Modified (1ms)
994
+
995
+
996
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 14:28:59 +0200
997
+ Served asset /jquery.js - 304 Not Modified (2ms)
998
+
999
+
1000
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 14:28:59 +0200
1001
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1002
+
1003
+
1004
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 14:28:59 +0200
1005
+ Served asset /test.js - 304 Not Modified (1ms)
1006
+
1007
+
1008
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 14:28:59 +0200
1009
+ Served asset /application.js - 304 Not Modified (4ms)
1010
+
1011
+
1012
+ Started GET "/test/" for 127.0.0.1 at 2013-07-15 14:29:02 +0200
1013
+ Processing by TestController#index as HTML
1014
+ Rendered test/index.html.erb within layouts/application (0.0ms)
1015
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1016
+
1017
+
1018
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 14:29:02 +0200
1019
+ Served asset /application.css - 304 Not Modified (0ms)
1020
+
1021
+
1022
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 14:29:02 +0200
1023
+ Served asset /test.css - 304 Not Modified (0ms)
1024
+
1025
+
1026
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 14:29:02 +0200
1027
+ Served asset /test.js - 304 Not Modified (0ms)
1028
+
1029
+
1030
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 14:29:02 +0200
1031
+ Served asset /jquery.js - 304 Not Modified (0ms)
1032
+
1033
+
1034
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 14:29:02 +0200
1035
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1036
+
1037
+
1038
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 14:29:02 +0200
1039
+ Served asset /application.js - 304 Not Modified (0ms)
1040
+
1041
+
1042
+ Started GET "/test/" for 127.0.0.1 at 2013-07-15 14:29:03 +0200
1043
+ Processing by TestController#index as HTML
1044
+ Redirected to http://0.0.0.0:3000/test/redirect
1045
+ Filter chain halted as #<Proc:0x007fc26d780ca8@/Users/jseveno/Desktop/rails_limiter/test/dummy/app/controllers/test_controller.rb:2> rendered or redirected
1046
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1047
+
1048
+
1049
+ Started GET "/test/redirect" for 127.0.0.1 at 2013-07-15 14:29:03 +0200
1050
+ Processing by TestController#redirect as HTML
1051
+ Rendered test/redirect.html.erb within layouts/application (0.3ms)
1052
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1053
+
1054
+
1055
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-15 14:29:03 +0200
1056
+ Served asset /application.css - 304 Not Modified (0ms)
1057
+
1058
+
1059
+ Started GET "/assets/test.css?body=1" for 127.0.0.1 at 2013-07-15 14:29:03 +0200
1060
+ Served asset /test.css - 304 Not Modified (0ms)
1061
+
1062
+
1063
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-15 14:29:03 +0200
1064
+ Served asset /application.js - 304 Not Modified (0ms)
1065
+
1066
+
1067
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-15 14:29:03 +0200
1068
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1069
+
1070
+
1071
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-15 14:29:03 +0200
1072
+ Served asset /jquery.js - 304 Not Modified (0ms)
1073
+
1074
+
1075
+ Started GET "/assets/test.js?body=1" for 127.0.0.1 at 2013-07-15 14:29:03 +0200
1076
+ Served asset /test.js - 304 Not Modified (0ms)