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