ezii-os 2.0.1 → 5.2.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 (44) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/visualizations.scss +3 -0
  3. data/app/assets/stylesheets/waymo_slomos.scss +3 -0
  4. data/app/controllers/visualizations_controller.rb +74 -0
  5. data/app/controllers/waymo_slomos_controller.rb +74 -0
  6. data/app/helpers/visualizations_helper.rb +2 -0
  7. data/app/helpers/waymo_slomos_helper.rb +2 -0
  8. data/app/models/visualization.rb +2 -0
  9. data/app/models/waymo_slomo.rb +2 -0
  10. data/app/views/application/_navbar.html.erb +9 -0
  11. data/app/views/banal/employees/index.html.erb +7 -49
  12. data/app/views/employees/index.html.erb +7 -49
  13. data/app/views/layouts/application.html.erb +11 -2
  14. data/app/views/visualizations/_form.html.erb +22 -0
  15. data/app/views/visualizations/_visualization.json.jbuilder +2 -0
  16. data/app/views/visualizations/edit.html.erb +6 -0
  17. data/app/views/visualizations/index.html.erb +30 -0
  18. data/app/views/visualizations/index.json.jbuilder +1 -0
  19. data/app/views/visualizations/new.html.erb +5 -0
  20. data/app/views/visualizations/show.html.erb +9 -0
  21. data/app/views/visualizations/show.json.jbuilder +1 -0
  22. data/app/views/waymo_slomos/_form.html.erb +22 -0
  23. data/app/views/waymo_slomos/_waymo_slomo.json.jbuilder +2 -0
  24. data/app/views/waymo_slomos/edit.html.erb +6 -0
  25. data/app/views/waymo_slomos/index.html.erb +27 -0
  26. data/app/views/waymo_slomos/index.json.jbuilder +1 -0
  27. data/app/views/waymo_slomos/new.html.erb +5 -0
  28. data/app/views/waymo_slomos/show.html.erb +9 -0
  29. data/app/views/waymo_slomos/show.json.jbuilder +1 -0
  30. data/config/routes.rb +2 -0
  31. data/db/migrate/20190919190540_create_waymo_slomos.rb +10 -0
  32. data/db/migrate/20190919190738_create_visualizations.rb +9 -0
  33. data/ezii-os-2.0.1.gem +0 -0
  34. data/ezii-os.gemspec +1 -1
  35. data/log/development.log +1394 -0
  36. data/test/controllers/visualizations_controller_test.rb +48 -0
  37. data/test/controllers/waymo_slomos_controller_test.rb +48 -0
  38. data/test/fixtures/visualizations.yml +7 -0
  39. data/test/fixtures/waymo_slomos.yml +7 -0
  40. data/test/models/visualization_test.rb +7 -0
  41. data/test/models/waymo_slomo_test.rb +7 -0
  42. data/test/system/visualizations_test.rb +43 -0
  43. data/test/system/waymo_slomos_test.rb +43 -0
  44. metadata +37 -2
@@ -0,0 +1 @@
1
+ json.partial! "visualizations/visualization", visualization: @visualization
@@ -0,0 +1,22 @@
1
+ <%= form_with(model: waymo_slomo, local: true) do |form| %>
2
+ <% if waymo_slomo.errors.any? %>
3
+ <div id="error_explanation">
4
+ <h2><%= pluralize(waymo_slomo.errors.count, "error") %> prohibited this waymo_slomo from being saved:</h2>
5
+
6
+ <ul>
7
+ <% waymo_slomo.errors.full_messages.each do |message| %>
8
+ <li><%= message %></li>
9
+ <% end %>
10
+ </ul>
11
+ </div>
12
+ <% end %>
13
+
14
+ <div class="field">
15
+ <%= form.label :banal_brainstorm_id %>
16
+ <%= form.number_field :banal_brainstorm_id %>
17
+ </div>
18
+
19
+ <div class="actions">
20
+ <%= form.submit %>
21
+ </div>
22
+ <% end %>
@@ -0,0 +1,2 @@
1
+ json.extract! waymo_slomo, :id, :banal_brainstorm_id, :created_at, :updated_at
2
+ json.url waymo_slomo_url(waymo_slomo, format: :json)
@@ -0,0 +1,6 @@
1
+ <h1>Editing Waymo Slomo</h1>
2
+
3
+ <%= render 'form', waymo_slomo: @waymo_slomo %>
4
+
5
+ <%= link_to 'Show', @waymo_slomo %> |
6
+ <%= link_to 'Back', waymo_slomos_path %>
@@ -0,0 +1,27 @@
1
+ <p id="notice"><%= notice %></p>
2
+
3
+ <h1>Waymo Slomos</h1>
4
+
5
+ <table>
6
+ <thead>
7
+ <tr>
8
+ <th>Banal brainstorm</th>
9
+ <th colspan="3"></th>
10
+ </tr>
11
+ </thead>
12
+
13
+ <tbody>
14
+ <% @waymo_slomos.each do |waymo_slomo| %>
15
+ <tr>
16
+ <td><%= waymo_slomo.banal_brainstorm_id %></td>
17
+ <td><%= link_to 'Show', waymo_slomo %></td>
18
+ <td><%= link_to 'Edit', edit_waymo_slomo_path(waymo_slomo) %></td>
19
+ <td><%= link_to 'Destroy', waymo_slomo, method: :delete, data: { confirm: 'Are you sure?' } %></td>
20
+ </tr>
21
+ <% end %>
22
+ </tbody>
23
+ </table>
24
+
25
+ <br>
26
+
27
+ <%= link_to 'New Waymo Slomo', new_waymo_slomo_path %>
@@ -0,0 +1 @@
1
+ json.array! @waymo_slomos, partial: "waymo_slomos/waymo_slomo", as: :waymo_slomo
@@ -0,0 +1,5 @@
1
+ <h1>New Waymo Slomo</h1>
2
+
3
+ <%= render 'form', waymo_slomo: @waymo_slomo %>
4
+
5
+ <%= link_to 'Back', waymo_slomos_path %>
@@ -0,0 +1,9 @@
1
+ <p id="notice"><%= notice %></p>
2
+
3
+ <p>
4
+ <strong>Banal brainstorm:</strong>
5
+ <%= @waymo_slomo.banal_brainstorm_id %>
6
+ </p>
7
+
8
+ <%= link_to 'Edit', edit_waymo_slomo_path(@waymo_slomo) %> |
9
+ <%= link_to 'Back', waymo_slomos_path %>
@@ -0,0 +1 @@
1
+ json.partial! "waymo_slomos/waymo_slomo", waymo_slomo: @waymo_slomo
data/config/routes.rb CHANGED
@@ -1,4 +1,6 @@
1
1
  Rails.application.routes.draw do
2
+ resources :visualizations
3
+ resources :waymo_slomos
2
4
  resources :banal_complexes
3
5
  resources :comments
4
6
  resources :address_searches
@@ -0,0 +1,10 @@
1
+ class CreateWaymoSlomos < ActiveRecord::Migration[6.0]
2
+ def change
3
+ create_table :waymo_slomos do |t|
4
+ t.integer :banal_brainstorm_id
5
+
6
+ t.timestamps
7
+ end
8
+ add_index :waymo_slomos, :banal_brainstorm_id, unique: true
9
+ end
10
+ end
@@ -0,0 +1,9 @@
1
+ class CreateVisualizations < ActiveRecord::Migration[6.0]
2
+ def change
3
+ create_table :visualizations do |t|
4
+ t.string :image_url
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
data/ezii-os-2.0.1.gem ADDED
Binary file
data/ezii-os.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'ezii-os'
3
- s.version = '2.0.1'
3
+ s.version = '5.2.1'
4
4
  s.date = '2019-08-14'
5
5
  s.summary = "eZii operating system"
6
6
  s.description = "Web-based, operating on the cloud platform"
data/log/development.log CHANGED
@@ -66586,3 +66586,1397 @@ puma (3.12.1) lib/puma/server.rb:474:in `process_client'
66586
66586
  puma (3.12.1) lib/puma/server.rb:334:in `block in run'
66587
66587
  puma (3.12.1) lib/puma/thread_pool.rb:135:in `block in spawn_thread'
66588
66588
  Request to https://sessions.bugsnag.com completed, status: 202
66589
+ Not notifying SystemExit due to ignore being signified in internal middlewares
66590
+ Not notifying SystemExit due to ignore being signified in internal middlewares
66591
+ Not notifying SystemExit due to ignore being signified in internal middlewares
66592
+ Started GET "/" for ::1 at 2019-09-19 21:08:49 +0200
66593
+  (113.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
66594
+ Notifying https://notify.bugsnag.com of ActiveRecord::PendingMigrationError
66595
+ Breadcrumb name trimmed to length 30. Original name: ActiveRecord::PendingMigrationError
66596
+
66597
+ ActiveRecord::PendingMigrationError (
66598
+
66599
+ Migrations are pending. To resolve this issue, run:
66600
+
66601
+ rails db:migrate RAILS_ENV=development
66602
+
66603
+ ):
66604
+
66605
+ activerecord (6.0.0) lib/active_record/migration.rb:587:in `check_pending!'
66606
+ activerecord (6.0.0) lib/active_record/migration.rb:564:in `call'
66607
+ actionpack (6.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
66608
+ activesupport (6.0.0) lib/active_support/callbacks.rb:101:in `run_callbacks'
66609
+ actionpack (6.0.0) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
66610
+ actionpack (6.0.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
66611
+ actionpack (6.0.0) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call'
66612
+ bugsnag (6.12.1) lib/bugsnag/integrations/rack.rb:49:in `call'
66613
+ actionpack (6.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:32:in `call'
66614
+ web-console (4.0.1) lib/web_console/middleware.rb:132:in `call_app'
66615
+ web-console (4.0.1) lib/web_console/middleware.rb:28:in `block in call'
66616
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `catch'
66617
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `call'
66618
+ actionpack (6.0.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
66619
+ railties (6.0.0) lib/rails/rack/logger.rb:38:in `call_app'
66620
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `block in call'
66621
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `block in tagged'
66622
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:28:in `tagged'
66623
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `tagged'
66624
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `call'
66625
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
66626
+ actionpack (6.0.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
66627
+ actionpack (6.0.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
66628
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
66629
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
66630
+ activesupport (6.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
66631
+ actionpack (6.0.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
66632
+ actionpack (6.0.0) lib/action_dispatch/middleware/static.rb:126:in `call'
66633
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
66634
+ actionpack (6.0.0) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
66635
+ webpacker (4.0.7) lib/webpacker/dev_server_proxy.rb:29:in `perform_request'
66636
+ rack-proxy (0.6.5) lib/rack/proxy.rb:57:in `call'
66637
+ railties (6.0.0) lib/rails/engine.rb:526:in `call'
66638
+ puma (3.12.1) lib/puma/configuration.rb:227:in `call'
66639
+ puma (3.12.1) lib/puma/server.rb:660:in `handle_request'
66640
+ puma (3.12.1) lib/puma/server.rb:474:in `process_client'
66641
+ puma (3.12.1) lib/puma/server.rb:334:in `block in run'
66642
+ puma (3.12.1) lib/puma/thread_pool.rb:135:in `block in spawn_thread'
66643
+ Request to https://notify.bugsnag.com completed, status: 200
66644
+ Started POST "/rails/actions" for ::1 at 2019-09-19 21:08:56 +0200
66645
+  (111.1ms) SELECT pg_try_advisory_lock(1978494779092661445)
66646
+  (107.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
66647
+ Migrating to CreateWaymoSlomos (20190919190540)
66648
+  (107.1ms) BEGIN
66649
+  (121.1ms) CREATE TABLE "waymo_slomos" ("id" bigserial primary key, "banal_brainstorm_id" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
66650
+  (111.1ms) CREATE UNIQUE INDEX "index_waymo_slomos_on_banal_brainstorm_id" ON "waymo_slomos" ("banal_brainstorm_id")
66651
+ primary::SchemaMigration Create (119.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20190919190540"]]
66652
+  (115.4ms) COMMIT
66653
+ Migrating to CreateVisualizations (20190919190738)
66654
+  (110.9ms) BEGIN
66655
+  (117.2ms) CREATE TABLE "visualizations" ("id" bigserial primary key, "image_url" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
66656
+ primary::SchemaMigration Create (111.0ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20190919190738"]]
66657
+  (112.7ms) COMMIT
66658
+ ActiveRecord::InternalMetadata Load (122.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
66659
+  (109.9ms) BEGIN
66660
+ ActiveRecord::InternalMetadata Update (121.7ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "development"], ["updated_at", "2019-09-19 19:08:59.483847"], ["key", "environment"]]
66661
+  (115.0ms) COMMIT
66662
+  (113.9ms) SELECT pg_advisory_unlock(1978494779092661445)
66663
+ Started GET "/" for ::1 at 2019-09-19 21:08:59 +0200
66664
+  (112.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
66665
+ Processing by ImportedDataController#overview as HTML
66666
+ Redirected to http://localhost:3000/directories/%2Fdropbox
66667
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 429)
66668
+
66669
+
66670
+ Started GET "/directories/%2Fdropbox" for ::1 at 2019-09-19 21:09:00 +0200
66671
+ Processing by DirectoriesController#show as HTML
66672
+ Parameters: {"id"=>"/dropbox"}
66673
+ FileSystem Load (109.1ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66674
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66675
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66676
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66677
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66678
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66679
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66680
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66681
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66682
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66683
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66684
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66685
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66686
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66687
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66688
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66689
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66690
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66691
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66692
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66693
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66694
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66695
+ Rendering directories/show.html.erb within layouts/application
66696
+ Rendered directories/show.html.erb within layouts/application (Duration: 2.5ms | Allocations: 2050)
66697
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 127)
66698
+ Completed 200 OK in 1910ms (Views: 110.2ms | ActiveRecord: 451.9ms | Allocations: 80568)
66699
+
66700
+
66701
+ Request to https://sessions.bugsnag.com completed, status: 202
66702
+ Started GET "/" for ::1 at 2019-09-19 21:12:09 +0200
66703
+ Processing by ImportedDataController#overview as HTML
66704
+ Redirected to http://localhost:3000/directories/%2Fdropbox
66705
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 365)
66706
+
66707
+
66708
+ Started GET "/directories/%2Fdropbox" for ::1 at 2019-09-19 21:12:09 +0200
66709
+ Processing by DirectoriesController#show as HTML
66710
+ Parameters: {"id"=>"/dropbox"}
66711
+ FileSystem Load (112.7ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66712
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66713
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66714
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66715
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66716
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66717
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66718
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66719
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66720
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66721
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66722
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66723
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66724
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66725
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66726
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66727
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66728
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66729
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66730
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66731
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66732
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66733
+ Rendering directories/show.html.erb within layouts/application
66734
+ Rendered directories/show.html.erb within layouts/application (Duration: 1.1ms | Allocations: 1345)
66735
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66736
+ Completed 200 OK in 1155ms (Views: 44.5ms | ActiveRecord: 227.5ms | Allocations: 45655)
66737
+
66738
+
66739
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:12:12 +0200
66740
+ Processing by VisualizationsController#index as HTML
66741
+ Rendering visualizations/index.html.erb within layouts/application
66742
+ Visualization Load (119.9ms) SELECT "visualizations".* FROM "visualizations"
66743
+ ↳ app/views/visualizations/index.html.erb:14
66744
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 347.0ms | Allocations: 1282)
66745
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66746
+ Completed 200 OK in 382ms (Views: 34.0ms | ActiveRecord: 344.2ms | Allocations: 39295)
66747
+
66748
+
66749
+ Started GET "/visualizations/new" for ::1 at 2019-09-19 21:12:14 +0200
66750
+ Processing by VisualizationsController#new as HTML
66751
+ Rendering visualizations/new.html.erb within layouts/application
66752
+ Rendered visualizations/_form.html.erb (Duration: 2.4ms | Allocations: 965)
66753
+ Rendered visualizations/new.html.erb within layouts/application (Duration: 4.6ms | Allocations: 1320)
66754
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 15)
66755
+ Completed 200 OK in 154ms (Views: 35.5ms | ActiveRecord: 114.3ms | Allocations: 40668)
66756
+
66757
+
66758
+ Started POST "/visualizations" for ::1 at 2019-09-19 21:12:17 +0200
66759
+ Processing by VisualizationsController#create as HTML
66760
+ Parameters: {"authenticity_token"=>"d+XEDYkSVXjJJEOw99LIbyZPHLBMEie0puVzIJ5hCSY1HRWc3rzdnMaz8c83ELMUDm3ZHq9dKF8Y4BfZhSNJiw==", "visualization"=>{"image_url"=>"https://gyazo.com/37827b8f33d583569af394872950b343"}, "commit"=>"Create Visualization"}
66761
+  (112.5ms) BEGIN
66762
+ ↳ app/controllers/visualizations_controller.rb:30:in `block in create'
66763
+ Visualization Create (112.5ms) INSERT INTO "visualizations" ("image_url", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["image_url", "https://gyazo.com/37827b8f33d583569af394872950b343"], ["created_at", "2019-09-19 19:12:17.162204"], ["updated_at", "2019-09-19 19:12:17.162204"]]
66764
+ ↳ app/controllers/visualizations_controller.rb:30:in `block in create'
66765
+  (114.4ms) COMMIT
66766
+ ↳ app/controllers/visualizations_controller.rb:30:in `block in create'
66767
+ Redirected to http://localhost:3000/visualizations/1
66768
+ Completed 302 Found in 346ms (ActiveRecord: 339.5ms | Allocations: 2743)
66769
+
66770
+
66771
+ Started GET "/visualizations/1" for ::1 at 2019-09-19 21:12:17 +0200
66772
+ Processing by VisualizationsController#show as HTML
66773
+ Parameters: {"id"=>"1"}
66774
+ Visualization Load (112.8ms) SELECT "visualizations".* FROM "visualizations" WHERE "visualizations"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]
66775
+ ↳ app/controllers/visualizations_controller.rb:67:in `set_visualization'
66776
+ Rendering visualizations/show.html.erb within layouts/application
66777
+ Rendered visualizations/show.html.erb within layouts/application (Duration: 1.2ms | Allocations: 256)
66778
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66779
+ Completed 200 OK in 259ms (Views: 34.0ms | ActiveRecord: 112.8ms | Allocations: 38235)
66780
+
66781
+
66782
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:12:20 +0200
66783
+ Processing by VisualizationsController#index as HTML
66784
+ Rendering visualizations/index.html.erb within layouts/application
66785
+ Visualization Load (112.1ms) SELECT "visualizations".* FROM "visualizations"
66786
+ ↳ app/views/visualizations/index.html.erb:14
66787
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 230.0ms | Allocations: 83901)
66788
+ Completed 500 Internal Server Error in 231ms (ActiveRecord: 112.1ms | Allocations: 84387)
66789
+
66790
+
66791
+ Notifying https://notify.bugsnag.com of NoMethodError
66792
+
66793
+ ActionView::Template::Error (undefined method `image_link' for #<#<Class:0x00007fedebc9cf08>:0x00007fedee052c68>
66794
+ Did you mean? image_url):
66795
+ 14: <% @visualizations.each do |visualization| %>
66796
+ 15: <tr>
66797
+ 16: <td>
66798
+ 17: <% image_link(visualization.image_url) %>
66799
+ 18: </td>
66800
+ 19: <td><%= visualization.image_url %></td>
66801
+ 20: <td><%= link_to 'Show', visualization %></td>
66802
+
66803
+ app/views/visualizations/index.html.erb:17
66804
+ app/views/visualizations/index.html.erb:14
66805
+ Request to https://notify.bugsnag.com completed, status: 200
66806
+ Request to https://sessions.bugsnag.com completed, status: 202
66807
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:12:41 +0200
66808
+ Processing by VisualizationsController#index as HTML
66809
+ Rendering visualizations/index.html.erb within layouts/application
66810
+ Visualization Load (114.7ms) SELECT "visualizations".* FROM "visualizations"
66811
+ ↳ app/views/visualizations/index.html.erb:14
66812
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 117.4ms | Allocations: 1066)
66813
+ Rendered application/_navbar.html.erb (Duration: 0.6ms | Allocations: 126)
66814
+ Completed 200 OK in 171ms (Views: 55.0ms | ActiveRecord: 114.7ms | Allocations: 39587)
66815
+
66816
+
66817
+ Started GET "/visualizations/1/edit" for ::1 at 2019-09-19 21:13:01 +0200
66818
+ Processing by VisualizationsController#edit as HTML
66819
+ Parameters: {"id"=>"1"}
66820
+ Visualization Load (115.3ms) SELECT "visualizations".* FROM "visualizations" WHERE "visualizations"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]
66821
+ ↳ app/controllers/visualizations_controller.rb:67:in `set_visualization'
66822
+ Rendering visualizations/edit.html.erb within layouts/application
66823
+ Rendered visualizations/_form.html.erb (Duration: 2.4ms | Allocations: 884)
66824
+ Rendered visualizations/edit.html.erb within layouts/application (Duration: 4.6ms | Allocations: 1285)
66825
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 15)
66826
+ Completed 200 OK in 162ms (Views: 44.2ms | ActiveRecord: 115.3ms | Allocations: 39132)
66827
+
66828
+
66829
+ Started PATCH "/visualizations/1" for ::1 at 2019-09-19 21:13:03 +0200
66830
+ Processing by VisualizationsController#update as HTML
66831
+ Parameters: {"authenticity_token"=>"QJn/Wkyqb11xyB3mZbY5e4Atpnyq2Yr8NkC0kpNsUUC0bMFY9IMTrvfIJ2hE/TnjYMc8QGdwuxuWGyTo0LmLVg==", "visualization"=>{"image_url"=>"https://i.gyazo.com/37827b8f33d583569af394872950b343.png"}, "commit"=>"Update Visualization", "id"=>"1"}
66832
+ Visualization Load (112.7ms) SELECT "visualizations".* FROM "visualizations" WHERE "visualizations"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]
66833
+ ↳ app/controllers/visualizations_controller.rb:67:in `set_visualization'
66834
+  (112.1ms) BEGIN
66835
+ ↳ app/controllers/visualizations_controller.rb:44:in `block in update'
66836
+ Visualization Update (127.9ms) UPDATE "visualizations" SET "image_url" = $1, "updated_at" = $2 WHERE "visualizations"."id" = $3 [["image_url", "https://i.gyazo.com/37827b8f33d583569af394872950b343.png"], ["updated_at", "2019-09-19 19:13:03.793684"], ["id", 1]]
66837
+ ↳ app/controllers/visualizations_controller.rb:44:in `block in update'
66838
+  (114.1ms) COMMIT
66839
+ ↳ app/controllers/visualizations_controller.rb:44:in `block in update'
66840
+ Redirected to http://localhost:3000/visualizations/1
66841
+ Completed 302 Found in 473ms (ActiveRecord: 466.9ms | Allocations: 3301)
66842
+
66843
+
66844
+ Started GET "/visualizations/1" for ::1 at 2019-09-19 21:13:04 +0200
66845
+ Processing by VisualizationsController#show as HTML
66846
+ Parameters: {"id"=>"1"}
66847
+ Visualization Load (118.4ms) SELECT "visualizations".* FROM "visualizations" WHERE "visualizations"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]
66848
+ ↳ app/controllers/visualizations_controller.rb:67:in `set_visualization'
66849
+ Rendering visualizations/show.html.erb within layouts/application
66850
+ Rendered visualizations/show.html.erb within layouts/application (Duration: 1.6ms | Allocations: 250)
66851
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66852
+ Completed 200 OK in 162ms (Views: 40.7ms | ActiveRecord: 118.4ms | Allocations: 38112)
66853
+
66854
+
66855
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:13:06 +0200
66856
+ Processing by VisualizationsController#index as HTML
66857
+ Rendering visualizations/index.html.erb within layouts/application
66858
+ Visualization Load (119.1ms) SELECT "visualizations".* FROM "visualizations"
66859
+ ↳ app/views/visualizations/index.html.erb:14
66860
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 121.1ms | Allocations: 803)
66861
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66862
+ Completed 200 OK in 174ms (Views: 54.4ms | ActiveRecord: 119.1ms | Allocations: 37967)
66863
+
66864
+
66865
+ Request to https://sessions.bugsnag.com completed, status: 202
66866
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:13:26 +0200
66867
+ Processing by VisualizationsController#index as HTML
66868
+ Rendering visualizations/index.html.erb within layouts/application
66869
+ Visualization Load (110.6ms) SELECT "visualizations".* FROM "visualizations"
66870
+ ↳ app/views/visualizations/index.html.erb:14
66871
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 112.6ms | Allocations: 1063)
66872
+ Rendered application/_navbar.html.erb (Duration: 0.6ms | Allocations: 126)
66873
+ Completed 200 OK in 147ms (Views: 35.8ms | ActiveRecord: 110.6ms | Allocations: 39583)
66874
+
66875
+
66876
+ Request to https://sessions.bugsnag.com completed, status: 202
66877
+ Started GET "/visualizations/new" for ::1 at 2019-09-19 21:14:29 +0200
66878
+ Processing by VisualizationsController#new as HTML
66879
+ Rendering visualizations/new.html.erb within layouts/application
66880
+ Rendered visualizations/_form.html.erb (Duration: 2.3ms | Allocations: 827)
66881
+ Rendered visualizations/new.html.erb within layouts/application (Duration: 4.3ms | Allocations: 1178)
66882
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 15)
66883
+ Completed 200 OK in 48ms (Views: 47.2ms | ActiveRecord: 0.0ms | Allocations: 38488)
66884
+
66885
+
66886
+ Request to https://sessions.bugsnag.com completed, status: 202
66887
+ Started POST "/visualizations" for ::1 at 2019-09-19 21:14:39 +0200
66888
+ Processing by VisualizationsController#create as HTML
66889
+ Parameters: {"authenticity_token"=>"PvcPsiiK7UNHpYuDd+F/plj8aUkNjQApJyT2Gvyt/vF8D94jfyRlp0gyOfy3IwTdcN6s5+7CD8KZIZLj5+++XA==", "visualization"=>{"image_url"=>"https://i.gyazo.com/99931138c5268ad423ca16c359a6e957.png"}, "commit"=>"Create Visualization"}
66890
+  (128.3ms) BEGIN
66891
+ ↳ app/controllers/visualizations_controller.rb:30:in `block in create'
66892
+ Visualization Create (120.8ms) INSERT INTO "visualizations" ("image_url", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["image_url", "https://i.gyazo.com/99931138c5268ad423ca16c359a6e957.png"], ["created_at", "2019-09-19 19:14:39.521348"], ["updated_at", "2019-09-19 19:14:39.521348"]]
66893
+ ↳ app/controllers/visualizations_controller.rb:30:in `block in create'
66894
+  (114.8ms) COMMIT
66895
+ ↳ app/controllers/visualizations_controller.rb:30:in `block in create'
66896
+ Redirected to http://localhost:3000/visualizations/2
66897
+ Completed 302 Found in 370ms (ActiveRecord: 363.9ms | Allocations: 2701)
66898
+
66899
+
66900
+ Started GET "/visualizations/2" for ::1 at 2019-09-19 21:14:39 +0200
66901
+ Processing by VisualizationsController#show as HTML
66902
+ Parameters: {"id"=>"2"}
66903
+ Visualization Load (114.3ms) SELECT "visualizations".* FROM "visualizations" WHERE "visualizations"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]]
66904
+ ↳ app/controllers/visualizations_controller.rb:67:in `set_visualization'
66905
+ Rendering visualizations/show.html.erb within layouts/application
66906
+ Rendered visualizations/show.html.erb within layouts/application (Duration: 0.9ms | Allocations: 250)
66907
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66908
+ Completed 200 OK in 150ms (Views: 33.7ms | ActiveRecord: 114.3ms | Allocations: 38118)
66909
+
66910
+
66911
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:14:42 +0200
66912
+ Processing by VisualizationsController#index as HTML
66913
+ Rendering visualizations/index.html.erb within layouts/application
66914
+ Visualization Load (115.1ms) SELECT "visualizations".* FROM "visualizations"
66915
+ ↳ app/views/visualizations/index.html.erb:14
66916
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 116.6ms | Allocations: 937)
66917
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66918
+ Completed 200 OK in 148ms (Views: 32.9ms | ActiveRecord: 115.1ms | Allocations: 38103)
66919
+
66920
+
66921
+ Started GET "/waymo_slomos" for ::1 at 2019-09-19 21:14:42 +0200
66922
+ Processing by WaymoSlomosController#index as HTML
66923
+ Rendering waymo_slomos/index.html.erb within layouts/application
66924
+ WaymoSlomo Load (108.1ms) SELECT "waymo_slomos".* FROM "waymo_slomos"
66925
+ ↳ app/views/waymo_slomos/index.html.erb:14
66926
+ Rendered waymo_slomos/index.html.erb within layouts/application (Duration: 223.1ms | Allocations: 1200)
66927
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66928
+ Completed 200 OK in 259ms (Views: 35.3ms | ActiveRecord: 220.8ms | Allocations: 39214)
66929
+
66930
+
66931
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:14:44 +0200
66932
+ Processing by VisualizationsController#index as HTML
66933
+ Rendering visualizations/index.html.erb within layouts/application
66934
+ Visualization Load (110.5ms) SELECT "visualizations".* FROM "visualizations"
66935
+ ↳ app/views/visualizations/index.html.erb:14
66936
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 111.8ms | Allocations: 943)
66937
+ Rendered application/_navbar.html.erb (Duration: 0.0ms | Allocations: 16)
66938
+ Completed 200 OK in 141ms (Views: 29.9ms | ActiveRecord: 110.5ms | Allocations: 38113)
66939
+
66940
+
66941
+ Request to https://sessions.bugsnag.com completed, status: 202
66942
+ Started GET "/" for ::1 at 2019-09-19 21:15:35 +0200
66943
+ Processing by ImportedDataController#overview as HTML
66944
+ Redirected to http://localhost:3000/directories/%2Fdropbox
66945
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 363)
66946
+
66947
+
66948
+ Started GET "/directories/%2Fdropbox" for ::1 at 2019-09-19 21:15:35 +0200
66949
+ Processing by DirectoriesController#show as HTML
66950
+ Parameters: {"id"=>"/dropbox"}
66951
+ FileSystem Load (112.4ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66952
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66953
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66954
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66955
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66956
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66957
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66958
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66959
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66960
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66961
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66962
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66963
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66964
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66965
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66966
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66967
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66968
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66969
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66970
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66971
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
66972
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
66973
+ Rendering directories/show.html.erb within layouts/application
66974
+ Rendered directories/show.html.erb within layouts/application (Duration: 3.0ms | Allocations: 2025)
66975
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66976
+ Completed 200 OK in 1436ms (Views: 53.4ms | ActiveRecord: 112.6ms | Allocations: 56756)
66977
+
66978
+
66979
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:15:38 +0200
66980
+ Request to https://sessions.bugsnag.com completed, status: 202
66981
+ Processing by VisualizationsController#index as HTML
66982
+ Rendering visualizations/index.html.erb within layouts/application
66983
+ Visualization Load (118.3ms) SELECT "visualizations".* FROM "visualizations"
66984
+ ↳ app/views/visualizations/index.html.erb:14
66985
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 119.5ms | Allocations: 943)
66986
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
66987
+ Completed 200 OK in 152ms (Views: 33.7ms | ActiveRecord: 118.3ms | Allocations: 37145)
66988
+
66989
+
66990
+ Request to https://sessions.bugsnag.com completed, status: 202
66991
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:16:23 +0200
66992
+ Processing by VisualizationsController#index as HTML
66993
+ Rendering visualizations/index.html.erb within layouts/application
66994
+ Visualization Load (110.0ms) SELECT "visualizations".* FROM "visualizations"
66995
+ ↳ app/views/visualizations/index.html.erb:14
66996
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 112.5ms | Allocations: 1197)
66997
+ Rendered application/_navbar.html.erb (Duration: 0.9ms | Allocations: 126)
66998
+ Completed 200 OK in 141ms (Views: 30.0ms | ActiveRecord: 110.0ms | Allocations: 38719)
66999
+
67000
+
67001
+ Request to https://sessions.bugsnag.com completed, status: 202
67002
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:16:49 +0200
67003
+ Processing by VisualizationsController#index as HTML
67004
+ Rendering visualizations/index.html.erb within layouts/application
67005
+ Visualization Load (112.8ms) SELECT "visualizations".* FROM "visualizations"
67006
+ ↳ app/views/visualizations/index.html.erb:14
67007
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 115.6ms | Allocations: 1192)
67008
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67009
+ Completed 200 OK in 150ms (Views: 36.3ms | ActiveRecord: 112.8ms | Allocations: 38703)
67010
+
67011
+
67012
+ Request to https://sessions.bugsnag.com completed, status: 202
67013
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:17:18 +0200
67014
+ Processing by VisualizationsController#index as HTML
67015
+ Rendering visualizations/index.html.erb within layouts/application
67016
+ Visualization Load (108.8ms) SELECT "visualizations".* FROM "visualizations"
67017
+ ↳ app/views/visualizations/index.html.erb:14
67018
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 110.4ms | Allocations: 1192)
67019
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67020
+ Completed 200 OK in 139ms (Views: 29.2ms | ActiveRecord: 108.8ms | Allocations: 38710)
67021
+
67022
+
67023
+ Request to https://sessions.bugsnag.com completed, status: 202
67024
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:17:45 +0200
67025
+ Processing by VisualizationsController#index as HTML
67026
+ Rendering visualizations/index.html.erb within layouts/application
67027
+ Visualization Load (121.0ms) SELECT "visualizations".* FROM "visualizations"
67028
+ ↳ app/views/visualizations/index.html.erb:14
67029
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 123.5ms | Allocations: 1192)
67030
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67031
+ Completed 200 OK in 159ms (Views: 36.8ms | ActiveRecord: 121.0ms | Allocations: 38708)
67032
+
67033
+
67034
+ Request to https://sessions.bugsnag.com completed, status: 202
67035
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:18:58 +0200
67036
+ Processing by VisualizationsController#index as HTML
67037
+ Rendering visualizations/index.html.erb within layouts/application
67038
+ Visualization Load (109.7ms) SELECT "visualizations".* FROM "visualizations"
67039
+ ↳ app/views/visualizations/index.html.erb:14
67040
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 112.9ms | Allocations: 1192)
67041
+ Rendered application/_navbar.html.erb (Duration: 0.7ms | Allocations: 126)
67042
+ Completed 200 OK in 158ms (Views: 47.8ms | ActiveRecord: 109.7ms | Allocations: 38721)
67043
+
67044
+
67045
+ Request to https://sessions.bugsnag.com completed, status: 202
67046
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:19:22 +0200
67047
+ Processing by VisualizationsController#index as HTML
67048
+ Rendering visualizations/index.html.erb within layouts/application
67049
+ Visualization Load (109.8ms) SELECT "visualizations".* FROM "visualizations"
67050
+ ↳ app/views/visualizations/index.html.erb:14
67051
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 111.9ms | Allocations: 1192)
67052
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 129)
67053
+ Completed 200 OK in 151ms (Views: 40.4ms | ActiveRecord: 109.8ms | Allocations: 38728)
67054
+
67055
+
67056
+ Request to https://sessions.bugsnag.com completed, status: 202
67057
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:20:00 +0200
67058
+ Processing by VisualizationsController#index as HTML
67059
+ Rendering visualizations/index.html.erb within layouts/application
67060
+ Visualization Load (113.5ms) SELECT "visualizations".* FROM "visualizations"
67061
+ ↳ app/views/visualizations/index.html.erb:14
67062
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 116.5ms | Allocations: 1192)
67063
+ Rendered application/_navbar.html.erb (Duration: 0.4ms | Allocations: 126)
67064
+ Completed 200 OK in 153ms (Views: 38.3ms | ActiveRecord: 113.5ms | Allocations: 38716)
67065
+
67066
+
67067
+ Request to https://sessions.bugsnag.com completed, status: 202
67068
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:20:11 +0200
67069
+ Processing by VisualizationsController#index as HTML
67070
+ Rendering visualizations/index.html.erb within layouts/application
67071
+ Visualization Load (108.6ms) SELECT "visualizations".* FROM "visualizations"
67072
+ ↳ app/views/visualizations/index.html.erb:14
67073
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 111.8ms | Allocations: 1193)
67074
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67075
+ Completed 200 OK in 149ms (Views: 39.5ms | ActiveRecord: 108.6ms | Allocations: 38717)
67076
+
67077
+
67078
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:20:30 +0200
67079
+ Processing by VisualizationsController#index as HTML
67080
+ Rendering visualizations/index.html.erb within layouts/application
67081
+ Visualization Load (112.8ms) SELECT "visualizations".* FROM "visualizations"
67082
+ ↳ app/views/visualizations/index.html.erb:14
67083
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 115.8ms | Allocations: 1192)
67084
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67085
+ Completed 200 OK in 152ms (Views: 37.9ms | ActiveRecord: 112.8ms | Allocations: 38712)
67086
+
67087
+
67088
+ Request to https://sessions.bugsnag.com completed, status: 202
67089
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:20:42 +0200
67090
+ Processing by VisualizationsController#index as HTML
67091
+ Rendering visualizations/index.html.erb within layouts/application
67092
+ Visualization Load (151.2ms) SELECT "visualizations".* FROM "visualizations"
67093
+ ↳ app/views/visualizations/index.html.erb:14
67094
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 152.9ms | Allocations: 1192)
67095
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67096
+ Completed 200 OK in 182ms (Views: 30.4ms | ActiveRecord: 151.2ms | Allocations: 38716)
67097
+
67098
+
67099
+ Request to https://sessions.bugsnag.com completed, status: 202
67100
+ Started GET "/" for ::1 at 2019-09-19 21:21:58 +0200
67101
+ Processing by ImportedDataController#overview as HTML
67102
+ Redirected to http://localhost:3000/directories/%2Fdropbox
67103
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 362)
67104
+
67105
+
67106
+ Started GET "/directories/%2Fdropbox" for ::1 at 2019-09-19 21:21:58 +0200
67107
+ Processing by DirectoriesController#show as HTML
67108
+ Parameters: {"id"=>"/dropbox"}
67109
+ FileSystem Load (113.9ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67110
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67111
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67112
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67113
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67114
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67115
+ CACHE FileSystem Load (0.1ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67116
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67117
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67118
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67119
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67120
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67121
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67122
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67123
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67124
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67125
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67126
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67127
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67128
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67129
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67130
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67131
+ Rendering directories/show.html.erb within layouts/application
67132
+ Rendered directories/show.html.erb within layouts/application (Duration: 2.8ms | Allocations: 2025)
67133
+ Rendered application/_navbar.html.erb (Duration: 0.8ms | Allocations: 126)
67134
+ Completed 200 OK in 826ms (Views: 48.6ms | ActiveRecord: 114.1ms | Allocations: 46543)
67135
+
67136
+
67137
+ Request to https://sessions.bugsnag.com completed, status: 202
67138
+ Started GET "/directories/%2Fdropbox" for ::1 at 2019-09-19 21:22:22 +0200
67139
+ Processing by DirectoriesController#show as HTML
67140
+ Parameters: {"id"=>"/dropbox"}
67141
+ FileSystem Load (114.6ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67142
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67143
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67144
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67145
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67146
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67147
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67148
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67149
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67150
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67151
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67152
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67153
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67154
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67155
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67156
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67157
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67158
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67159
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67160
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67161
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67162
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67163
+ Rendering directories/show.html.erb within layouts/application
67164
+ Rendered directories/show.html.erb within layouts/application (Duration: 3.0ms | Allocations: 2015)
67165
+ Rendered application/_navbar.html.erb (Duration: 0.6ms | Allocations: 126)
67166
+ Completed 200 OK in 980ms (Views: 47.8ms | ActiveRecord: 114.8ms | Allocations: 46525)
67167
+
67168
+
67169
+ Request to https://sessions.bugsnag.com completed, status: 202
67170
+ Started GET "/directories/%2Fdropbox" for ::1 at 2019-09-19 21:22:41 +0200
67171
+ Processing by DirectoriesController#show as HTML
67172
+ Parameters: {"id"=>"/dropbox"}
67173
+ FileSystem Load (110.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67174
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67175
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67176
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67177
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67178
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67179
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67180
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67181
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67182
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67183
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67184
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67185
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67186
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67187
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67188
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67189
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67190
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67191
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67192
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67193
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67194
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67195
+ Rendering directories/show.html.erb within layouts/application
67196
+ Rendered directories/show.html.erb within layouts/application (Duration: 2.5ms | Allocations: 2028)
67197
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 127)
67198
+ Completed 200 OK in 1026ms (Views: 35.5ms | ActiveRecord: 110.2ms | Allocations: 46554)
67199
+
67200
+
67201
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:23:04 +0200
67202
+ Processing by VisualizationsController#index as HTML
67203
+ Rendering visualizations/index.html.erb within layouts/application
67204
+ Visualization Load (112.7ms) SELECT "visualizations".* FROM "visualizations"
67205
+ ↳ app/views/visualizations/index.html.erb:14
67206
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 116.0ms | Allocations: 1192)
67207
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 127)
67208
+ Completed 200 OK in 152ms (Views: 38.6ms | ActiveRecord: 112.7ms | Allocations: 38720)
67209
+
67210
+
67211
+ Request to https://sessions.bugsnag.com completed, status: 202
67212
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:23:32 +0200
67213
+ Processing by VisualizationsController#index as HTML
67214
+ Rendering visualizations/index.html.erb within layouts/application
67215
+ Visualization Load (121.7ms) SELECT "visualizations".* FROM "visualizations"
67216
+ ↳ app/views/visualizations/index.html.erb:14
67217
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 123.9ms | Allocations: 1193)
67218
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67219
+ Completed 200 OK in 159ms (Views: 36.3ms | ActiveRecord: 121.7ms | Allocations: 38720)
67220
+
67221
+
67222
+ Request to https://sessions.bugsnag.com completed, status: 202
67223
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:23:46 +0200
67224
+ Processing by VisualizationsController#index as HTML
67225
+ Rendering visualizations/index.html.erb within layouts/application
67226
+ Visualization Load (119.2ms) SELECT "visualizations".* FROM "visualizations"
67227
+ ↳ app/views/visualizations/index.html.erb:14
67228
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 121.9ms | Allocations: 1192)
67229
+ Rendered application/_navbar.html.erb (Duration: 0.4ms | Allocations: 126)
67230
+ Completed 200 OK in 157ms (Views: 36.4ms | ActiveRecord: 119.2ms | Allocations: 38711)
67231
+
67232
+
67233
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:24:00 +0200
67234
+ Processing by VisualizationsController#index as HTML
67235
+ Rendering visualizations/index.html.erb within layouts/application
67236
+ Visualization Load (113.6ms) SELECT "visualizations".* FROM "visualizations"
67237
+ ↳ app/views/visualizations/index.html.erb:14
67238
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 116.4ms | Allocations: 1195)
67239
+ Rendered application/_navbar.html.erb (Duration: 0.4ms | Allocations: 126)
67240
+ Completed 200 OK in 157ms (Views: 42.1ms | ActiveRecord: 113.6ms | Allocations: 38715)
67241
+
67242
+
67243
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:24:08 +0200
67244
+ Processing by VisualizationsController#index as HTML
67245
+ Rendering visualizations/index.html.erb within layouts/application
67246
+ Visualization Load (117.2ms) SELECT "visualizations".* FROM "visualizations"
67247
+ ↳ app/views/visualizations/index.html.erb:14
67248
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 119.9ms | Allocations: 1619)
67249
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67250
+ Completed 200 OK in 162ms (Views: 43.5ms | ActiveRecord: 117.2ms | Allocations: 39142)
67251
+
67252
+
67253
+ Request to https://sessions.bugsnag.com completed, status: 202
67254
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:24:18 +0200
67255
+ Processing by VisualizationsController#index as HTML
67256
+ Rendering visualizations/index.html.erb within layouts/application
67257
+ Visualization Load (130.2ms) SELECT "visualizations".* FROM "visualizations"
67258
+ ↳ app/views/visualizations/index.html.erb:14
67259
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 133.3ms | Allocations: 1195)
67260
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 129)
67261
+ Completed 200 OK in 173ms (Views: 41.2ms | ActiveRecord: 130.2ms | Allocations: 38727)
67262
+
67263
+
67264
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:24:25 +0200
67265
+ Processing by VisualizationsController#index as HTML
67266
+ Rendering visualizations/index.html.erb within layouts/application
67267
+ Visualization Load (113.3ms) SELECT "visualizations".* FROM "visualizations"
67268
+ ↳ app/views/visualizations/index.html.erb:14
67269
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 115.4ms | Allocations: 943)
67270
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67271
+ Completed 200 OK in 148ms (Views: 33.8ms | ActiveRecord: 113.3ms | Allocations: 37110)
67272
+
67273
+
67274
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:24:28 +0200
67275
+ Processing by VisualizationsController#index as HTML
67276
+ Rendering visualizations/index.html.erb within layouts/application
67277
+ Visualization Load (123.0ms) SELECT "visualizations".* FROM "visualizations"
67278
+ ↳ app/views/visualizations/index.html.erb:14
67279
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 125.1ms | Allocations: 937)
67280
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67281
+ Completed 200 OK in 157ms (Views: 33.5ms | ActiveRecord: 123.0ms | Allocations: 37101)
67282
+
67283
+
67284
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:24:32 +0200
67285
+ Processing by VisualizationsController#index as HTML
67286
+ Rendering visualizations/index.html.erb within layouts/application
67287
+ Visualization Load (115.8ms) SELECT "visualizations".* FROM "visualizations"
67288
+ ↳ app/views/visualizations/index.html.erb:14
67289
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 118.8ms | Allocations: 937)
67290
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67291
+ Completed 200 OK in 151ms (Views: 34.5ms | ActiveRecord: 115.8ms | Allocations: 37097)
67292
+
67293
+
67294
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:24:34 +0200
67295
+ Processing by VisualizationsController#index as HTML
67296
+ Rendering visualizations/index.html.erb within layouts/application
67297
+ Visualization Load (113.3ms) SELECT "visualizations".* FROM "visualizations"
67298
+ ↳ app/views/visualizations/index.html.erb:14
67299
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 115.4ms | Allocations: 934)
67300
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67301
+ Completed 200 OK in 147ms (Views: 32.8ms | ActiveRecord: 113.3ms | Allocations: 37097)
67302
+
67303
+
67304
+ Started GET "/..." for ::1 at 2019-09-19 21:24:37 +0200
67305
+
67306
+ ActionController::RoutingError (No route matches [GET] "/..."):
67307
+
67308
+ actionpack (6.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
67309
+ web-console (4.0.1) lib/web_console/middleware.rb:132:in `call_app'
67310
+ web-console (4.0.1) lib/web_console/middleware.rb:28:in `block in call'
67311
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `catch'
67312
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `call'
67313
+ actionpack (6.0.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
67314
+ railties (6.0.0) lib/rails/rack/logger.rb:38:in `call_app'
67315
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `block in call'
67316
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `block in tagged'
67317
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:28:in `tagged'
67318
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `tagged'
67319
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `call'
67320
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
67321
+ actionpack (6.0.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
67322
+ actionpack (6.0.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
67323
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
67324
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
67325
+ activesupport (6.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
67326
+ actionpack (6.0.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
67327
+ actionpack (6.0.0) lib/action_dispatch/middleware/static.rb:126:in `call'
67328
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
67329
+ actionpack (6.0.0) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
67330
+ webpacker (4.0.7) lib/webpacker/dev_server_proxy.rb:29:in `perform_request'
67331
+ rack-proxy (0.6.5) lib/rack/proxy.rb:57:in `call'
67332
+ railties (6.0.0) lib/rails/engine.rb:526:in `call'
67333
+ puma (3.12.1) lib/puma/configuration.rb:227:in `call'
67334
+ puma (3.12.1) lib/puma/server.rb:660:in `handle_request'
67335
+ puma (3.12.1) lib/puma/server.rb:474:in `process_client'
67336
+ puma (3.12.1) lib/puma/server.rb:334:in `block in run'
67337
+ puma (3.12.1) lib/puma/thread_pool.rb:135:in `block in spawn_thread'
67338
+ Request to https://sessions.bugsnag.com completed, status: 202
67339
+ Started GET "/waymo_slomos" for ::1 at 2019-09-19 21:25:18 +0200
67340
+ Processing by WaymoSlomosController#index as HTML
67341
+ Rendering waymo_slomos/index.html.erb within layouts/application
67342
+ WaymoSlomo Load (112.0ms) SELECT "waymo_slomos".* FROM "waymo_slomos"
67343
+ ↳ app/views/waymo_slomos/index.html.erb:14
67344
+ Rendered waymo_slomos/index.html.erb within layouts/application (Duration: 114.5ms | Allocations: 902)
67345
+ Rendered application/_navbar.html.erb (Duration: 0.0ms | Allocations: 16)
67346
+ Completed 200 OK in 145ms (Views: 32.3ms | ActiveRecord: 112.0ms | Allocations: 37654)
67347
+
67348
+
67349
+ Started GET "/..." for ::1 at 2019-09-19 21:25:19 +0200
67350
+
67351
+ ActionController::RoutingError (No route matches [GET] "/..."):
67352
+
67353
+ actionpack (6.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
67354
+ web-console (4.0.1) lib/web_console/middleware.rb:132:in `call_app'
67355
+ web-console (4.0.1) lib/web_console/middleware.rb:28:in `block in call'
67356
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `catch'
67357
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `call'
67358
+ actionpack (6.0.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
67359
+ railties (6.0.0) lib/rails/rack/logger.rb:38:in `call_app'
67360
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `block in call'
67361
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `block in tagged'
67362
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:28:in `tagged'
67363
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `tagged'
67364
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `call'
67365
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
67366
+ actionpack (6.0.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
67367
+ actionpack (6.0.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
67368
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
67369
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
67370
+ activesupport (6.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
67371
+ actionpack (6.0.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
67372
+ actionpack (6.0.0) lib/action_dispatch/middleware/static.rb:126:in `call'
67373
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
67374
+ actionpack (6.0.0) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
67375
+ webpacker (4.0.7) lib/webpacker/dev_server_proxy.rb:29:in `perform_request'
67376
+ rack-proxy (0.6.5) lib/rack/proxy.rb:57:in `call'
67377
+ railties (6.0.0) lib/rails/engine.rb:526:in `call'
67378
+ puma (3.12.1) lib/puma/configuration.rb:227:in `call'
67379
+ puma (3.12.1) lib/puma/server.rb:660:in `handle_request'
67380
+ puma (3.12.1) lib/puma/server.rb:474:in `process_client'
67381
+ puma (3.12.1) lib/puma/server.rb:334:in `block in run'
67382
+ puma (3.12.1) lib/puma/thread_pool.rb:135:in `block in spawn_thread'
67383
+ Started GET "/waymo_slomos" for ::1 at 2019-09-19 21:25:22 +0200
67384
+ Processing by WaymoSlomosController#index as HTML
67385
+ Rendering waymo_slomos/index.html.erb within layouts/application
67386
+ WaymoSlomo Load (108.8ms) SELECT "waymo_slomos".* FROM "waymo_slomos"
67387
+ ↳ app/views/waymo_slomos/index.html.erb:14
67388
+ Rendered waymo_slomos/index.html.erb within layouts/application (Duration: 110.5ms | Allocations: 666)
67389
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67390
+ Completed 200 OK in 143ms (Views: 33.7ms | ActiveRecord: 108.8ms | Allocations: 36833)
67391
+
67392
+
67393
+ Started GET "/banal_complexes" for ::1 at 2019-09-19 21:25:27 +0200
67394
+ Processing by BanalComplexesController#index as HTML
67395
+ Rendering banal_complexes/index.html.erb within layouts/application
67396
+ BanalComplex Load (113.2ms) SELECT "banal_complexes".* FROM "banal_complexes"
67397
+ ↳ app/views/banal_complexes/index.html.erb:15
67398
+ BanalComplex Load (113.7ms) SELECT "banal_complexes".* FROM "banal_complexes" WHERE ( "id" IN ( WITH RECURSIVE all_nodes AS (
67399
+ SELECT "banal_complexes"."id", "banal_complexes"."parent_id" FROM "banal_complexes" WHERE "banal_complexes"."parent_id" IS NULL
67400
+ UNION
67401
+ SELECT "banal_complexes"."id", "banal_complexes"."parent_id" FROM "banal_complexes" INNER JOIN all_nodes ON "banal_complexes"."parent_id"=all_nodes."id"
67402
+ )
67403
+
67404
+ SELECT "banal_complexes"."id" FROM "banal_complexes" INNER JOIN all_nodes USING("id")
67405
+ )
67406
+ )
67407
+ ↳ app/views/banal_complexes/index.html.erb:30:in `map'
67408
+ CACHE BanalComplex Load (0.0ms) SELECT "banal_complexes".* FROM "banal_complexes"
67409
+ ↳ app/views/banal_complexes/index.html.erb:36:in `map'
67410
+ Rendered banal_complexes/index.html.erb within layouts/application (Duration: 483.3ms | Allocations: 2951)
67411
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67412
+ Completed 200 OK in 519ms (Views: 38.7ms | ActiveRecord: 476.8ms | Allocations: 40789)
67413
+
67414
+
67415
+ Request to https://sessions.bugsnag.com completed, status: 202
67416
+ Started GET "/..." for ::1 at 2019-09-19 21:25:39 +0200
67417
+
67418
+ ActionController::RoutingError (No route matches [GET] "/..."):
67419
+
67420
+ actionpack (6.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
67421
+ web-console (4.0.1) lib/web_console/middleware.rb:132:in `call_app'
67422
+ web-console (4.0.1) lib/web_console/middleware.rb:28:in `block in call'
67423
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `catch'
67424
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `call'
67425
+ actionpack (6.0.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
67426
+ railties (6.0.0) lib/rails/rack/logger.rb:38:in `call_app'
67427
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `block in call'
67428
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `block in tagged'
67429
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:28:in `tagged'
67430
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `tagged'
67431
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `call'
67432
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
67433
+ actionpack (6.0.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
67434
+ actionpack (6.0.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
67435
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
67436
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
67437
+ activesupport (6.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
67438
+ actionpack (6.0.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
67439
+ actionpack (6.0.0) lib/action_dispatch/middleware/static.rb:126:in `call'
67440
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
67441
+ actionpack (6.0.0) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
67442
+ webpacker (4.0.7) lib/webpacker/dev_server_proxy.rb:29:in `perform_request'
67443
+ rack-proxy (0.6.5) lib/rack/proxy.rb:57:in `call'
67444
+ railties (6.0.0) lib/rails/engine.rb:526:in `call'
67445
+ puma (3.12.1) lib/puma/configuration.rb:227:in `call'
67446
+ puma (3.12.1) lib/puma/server.rb:660:in `handle_request'
67447
+ puma (3.12.1) lib/puma/server.rb:474:in `process_client'
67448
+ puma (3.12.1) lib/puma/server.rb:334:in `block in run'
67449
+ puma (3.12.1) lib/puma/thread_pool.rb:135:in `block in spawn_thread'
67450
+ Request to https://sessions.bugsnag.com completed, status: 202
67451
+ Started GET "/" for ::1 at 2019-09-19 21:32:38 +0200
67452
+ Request to https://sessions.bugsnag.com completed, status: 202
67453
+ Processing by ImportedDataController#overview as HTML
67454
+ Redirected to http://localhost:3000/directories/%2Fdropbox
67455
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 364)
67456
+
67457
+
67458
+ Started GET "/directories/%2Fdropbox" for ::1 at 2019-09-19 21:32:40 +0200
67459
+ Processing by DirectoriesController#show as HTML
67460
+ Parameters: {"id"=>"/dropbox"}
67461
+ FileSystem Load (113.7ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67462
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67463
+ CACHE FileSystem Load (0.1ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67464
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67465
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67466
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67467
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67468
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67469
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67470
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67471
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67472
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67473
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67474
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67475
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67476
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67477
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67478
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67479
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67480
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67481
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67482
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67483
+ Rendering directories/show.html.erb within layouts/application
67484
+ Rendered directories/show.html.erb within layouts/application (Duration: 2.8ms | Allocations: 2028)
67485
+ Rendered application/_navbar.html.erb (Duration: 0.6ms | Allocations: 127)
67486
+ Completed 200 OK in 1131ms (Views: 38.4ms | ActiveRecord: 235.6ms | Allocations: 46662)
67487
+
67488
+
67489
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:32:43 +0200
67490
+ Processing by Banal::EmployeesController#index as HTML
67491
+ Rendering banal/employees/index.html.erb within layouts/application
67492
+ Banal::Employee Load (110.7ms) SELECT "banal_employees".* FROM "banal_employees"
67493
+ ↳ app/views/banal/employees/index.html.erb:25
67494
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 474.1ms | Allocations: 10802)
67495
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67496
+ Completed 200 OK in 515ms (Views: 52.5ms | ActiveRecord: 459.5ms | Allocations: 47843)
67497
+
67498
+
67499
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:32:51 +0200
67500
+ Processing by Banal::EmployeesController#index as HTML
67501
+ Rendering banal/employees/index.html.erb within layouts/application
67502
+ Banal::Employee Load (114.6ms) SELECT "banal_employees".* FROM "banal_employees"
67503
+ ↳ app/views/banal/employees/index.html.erb:25
67504
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 116.5ms | Allocations: 1200)
67505
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67506
+ Completed 200 OK in 149ms (Views: 34.2ms | ActiveRecord: 114.6ms | Allocations: 37365)
67507
+
67508
+
67509
+ Request to https://sessions.bugsnag.com completed, status: 202
67510
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:33:13 +0200
67511
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:33:13 +0200
67512
+ Processing by Banal::EmployeesController#index as HTML
67513
+ Rendering banal/employees/index.html.erb within layouts/application
67514
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 0.7ms | Allocations: 1055)
67515
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2015)
67516
+
67517
+
67518
+ Notifying https://notify.bugsnag.com of SyntaxError
67519
+ Breadcrumb name trimmed to length 30. Original name: ActionView::SyntaxErrorInTemplate
67520
+
67521
+ ActionView::SyntaxErrorInTemplate (Encountered a syntax error while rendering template: check <div class="list-group">
67522
+ <% @employees.each do |employee| %>
67523
+ <div class="list-group-item">
67524
+ <%= link_to(employee.full_name, employee_path(employee) %>
67525
+ </div>
67526
+ <% end %>
67527
+ </div>
67528
+ ):
67529
+ 1: <div class="list-group">
67530
+ 2: <% @employees.each do |employee| %>
67531
+ 3: <div class="list-group-item">
67532
+ 4: <%= link_to(employee.full_name, employee_path(employee) %>
67533
+ 5: </div>
67534
+ 6: <% end %>
67535
+ 7: </div>
67536
+
67537
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67538
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67539
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67540
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67541
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67542
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67543
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67544
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67545
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67546
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67547
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67548
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67549
+ Processing by Banal::EmployeesController#index as HTML
67550
+ Rendering banal/employees/index.html.erb within layouts/application
67551
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 88.1ms | Allocations: 174558)
67552
+ Completed 500 Internal Server Error in 89ms (ActiveRecord: 0.0ms | Allocations: 175095)
67553
+
67554
+
67555
+ Notifying https://notify.bugsnag.com of SyntaxError
67556
+ Breadcrumb name trimmed to length 30. Original name: ActionView::SyntaxErrorInTemplate
67557
+
67558
+ ActionView::SyntaxErrorInTemplate (Encountered a syntax error while rendering template: check <div class="list-group">
67559
+ <% @employees.each do |employee| %>
67560
+ <div class="list-group-item">
67561
+ <%= link_to(employee.full_name, employee_path(employee) %>
67562
+ </div>
67563
+ <% end %>
67564
+ </div>
67565
+ ):
67566
+ 1: <div class="list-group">
67567
+ 2: <% @employees.each do |employee| %>
67568
+ 3: <div class="list-group-item">
67569
+ 4: <%= link_to(employee.full_name, employee_path(employee) %>
67570
+ 5: </div>
67571
+ 6: <% end %>
67572
+ 7: </div>
67573
+
67574
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67575
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67576
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67577
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67578
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67579
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67580
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67581
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67582
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67583
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67584
+ app/views/banal/employees/index.html.erb:6: syntax error, unexpected `end', expecting ')'
67585
+ app/views/banal/employees/index.html.erb:9: syntax error, unexpected `end', expecting ')'
67586
+ Request to https://notify.bugsnag.com completed, status: 200
67587
+ Request to https://notify.bugsnag.com completed, status: 200
67588
+ Request to https://sessions.bugsnag.com completed, status: 202
67589
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:33:51 +0200
67590
+ Processing by Banal::EmployeesController#index as HTML
67591
+ Rendering banal/employees/index.html.erb within layouts/application
67592
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 1.6ms | Allocations: 1406)
67593
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2369)
67594
+
67595
+
67596
+ Notifying https://notify.bugsnag.com of NoMethodError
67597
+
67598
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
67599
+ 1: <div class="list-group">
67600
+ 2: <% @employees.each do |employee| %>
67601
+ 3: <div class="list-group-item">
67602
+ 4: <%= link_to(employee.full_name, employee_path(employee)) %>
67603
+ 5: </div>
67604
+
67605
+ app/views/banal/employees/index.html.erb:2
67606
+ Request to https://notify.bugsnag.com completed, status: 200
67607
+ Request to https://sessions.bugsnag.com completed, status: 202
67608
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:34:25 +0200
67609
+ Processing by Banal::EmployeesController#index as HTML
67610
+ Rendering banal/employees/index.html.erb within layouts/application
67611
+ Banal::Employee Load (111.9ms) SELECT "banal_employees".* FROM "banal_employees"
67612
+ ↳ app/views/banal/employees/index.html.erb:2
67613
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 124.4ms | Allocations: 4800)
67614
+ Completed 500 Internal Server Error in 126ms (ActiveRecord: 111.9ms | Allocations: 5763)
67615
+
67616
+
67617
+ Notifying https://notify.bugsnag.com of NoMethodError
67618
+
67619
+ ActionView::Template::Error (undefined method `full_name' for #<Banal::Employee:0x00007fede39a4a38>
67620
+ Did you mean? Full_Name
67621
+ Full_Name?
67622
+ Full_Name=):
67623
+ 1: <div class="list-group">
67624
+ 2: <% @banal_employees.each do |employee| %>
67625
+ 3: <div class="list-group-item">
67626
+ 4: <%= link_to(employee.full_name, employee_path(employee)) %>
67627
+ 5: </div>
67628
+ 6: <% end %>
67629
+ 7: </div>
67630
+
67631
+ app/views/banal/employees/index.html.erb:4
67632
+ app/views/banal/employees/index.html.erb:2
67633
+ Request to https://notify.bugsnag.com completed, status: 200
67634
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:34:34 +0200
67635
+ Processing by Banal::EmployeesController#index as HTML
67636
+ Rendering banal/employees/index.html.erb within layouts/application
67637
+ Banal::Employee Load (111.3ms) SELECT "banal_employees".* FROM "banal_employees"
67638
+ ↳ app/views/banal/employees/index.html.erb:2
67639
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 112.8ms | Allocations: 945)
67640
+ Rendered application/_navbar.html.erb (Duration: 0.9ms | Allocations: 126)
67641
+ Completed 200 OK in 145ms (Views: 33.1ms | ActiveRecord: 111.3ms | Allocations: 38439)
67642
+
67643
+
67644
+ Request to https://sessions.bugsnag.com completed, status: 202
67645
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:34:50 +0200
67646
+ Processing by Banal::EmployeesController#index as HTML
67647
+ Rendering banal/employees/index.html.erb within layouts/application
67648
+ Banal::Employee Load (111.5ms) SELECT "banal_employees".* FROM "banal_employees"
67649
+ ↳ app/views/banal/employees/index.html.erb:2
67650
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 113.7ms | Allocations: 945)
67651
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67652
+ Completed 200 OK in 153ms (Views: 39.4ms | ActiveRecord: 111.5ms | Allocations: 38468)
67653
+
67654
+
67655
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:34:52 +0200
67656
+ Processing by Banal::EmployeesController#index as HTML
67657
+ Rendering banal/employees/index.html.erb within layouts/application
67658
+ Banal::Employee Load (111.3ms) SELECT "banal_employees".* FROM "banal_employees"
67659
+ ↳ app/views/banal/employees/index.html.erb:2
67660
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 112.6ms | Allocations: 804)
67661
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67662
+ Completed 200 OK in 141ms (Views: 28.9ms | ActiveRecord: 111.3ms | Allocations: 36964)
67663
+
67664
+
67665
+ Request to https://sessions.bugsnag.com completed, status: 202
67666
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:35:24 +0200
67667
+ Processing by Banal::EmployeesController#index as HTML
67668
+ Rendering banal/employees/index.html.erb within layouts/application
67669
+ Banal::Employee Load (112.6ms) SELECT "banal_employees".* FROM "banal_employees"
67670
+ ↳ app/views/banal/employees/index.html.erb:2
67671
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 114.2ms | Allocations: 955)
67672
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67673
+ Completed 200 OK in 151ms (Views: 37.0ms | ActiveRecord: 112.6ms | Allocations: 38482)
67674
+
67675
+
67676
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:35:33 +0200
67677
+ Processing by Banal::EmployeesController#index as HTML
67678
+ Rendering banal/employees/index.html.erb within layouts/application
67679
+ Banal::Employee Load (111.9ms) SELECT "banal_employees".* FROM "banal_employees"
67680
+ ↳ app/views/banal/employees/index.html.erb:2
67681
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 114.1ms | Allocations: 966)
67682
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 126)
67683
+ Completed 200 OK in 149ms (Views: 36.1ms | ActiveRecord: 111.9ms | Allocations: 38489)
67684
+
67685
+
67686
+ Request to https://sessions.bugsnag.com completed, status: 202
67687
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:35:51 +0200
67688
+ Processing by Banal::EmployeesController#index as HTML
67689
+ Rendering banal/employees/index.html.erb within layouts/application
67690
+ Banal::Employee Load (122.2ms) SELECT "banal_employees".* FROM "banal_employees"
67691
+ ↳ app/views/banal/employees/index.html.erb:2
67692
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 125.0ms | Allocations: 823)
67693
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67694
+ Completed 200 OK in 157ms (Views: 34.4ms | ActiveRecord: 122.2ms | Allocations: 36985)
67695
+
67696
+
67697
+ Started GET "/employees/3" for ::1 at 2019-09-19 21:35:52 +0200
67698
+ Processing by EmployeesController#show as HTML
67699
+ Parameters: {"id"=>"3"}
67700
+ Employee Load (118.7ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]]
67701
+ ↳ app/controllers/employees_controller.rb:67:in `set_employee'
67702
+ Completed 404 Not Found in 464ms (ActiveRecord: 346.6ms | Allocations: 2342)
67703
+
67704
+
67705
+ Notifying https://notify.bugsnag.com of ActiveRecord::RecordNotFound
67706
+
67707
+ ActiveRecord::RecordNotFound (Couldn't find Employee with 'id'=3):
67708
+
67709
+ app/controllers/employees_controller.rb:67:in `set_employee'
67710
+ Started GET "/employees/3" for ::1 at 2019-09-19 21:35:53 +0200
67711
+ Processing by EmployeesController#show as HTML
67712
+ Parameters: {"id"=>"3"}
67713
+ Employee Load (111.4ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]]
67714
+ ↳ app/controllers/employees_controller.rb:67:in `set_employee'
67715
+ Completed 404 Not Found in 113ms (ActiveRecord: 111.4ms | Allocations: 1200)
67716
+
67717
+
67718
+ Notifying https://notify.bugsnag.com of ActiveRecord::RecordNotFound
67719
+
67720
+ ActiveRecord::RecordNotFound (Couldn't find Employee with 'id'=3):
67721
+
67722
+ app/controllers/employees_controller.rb:67:in `set_employee'
67723
+ Request to https://notify.bugsnag.com completed, status: 200
67724
+ Request to https://notify.bugsnag.com completed, status: 200
67725
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:35:58 +0200
67726
+ Processing by Banal::EmployeesController#index as HTML
67727
+ Rendering banal/employees/index.html.erb within layouts/application
67728
+ Banal::Employee Load (121.0ms) SELECT "banal_employees".* FROM "banal_employees"
67729
+ ↳ app/views/banal/employees/index.html.erb:2
67730
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 122.4ms | Allocations: 815)
67731
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67732
+ Completed 200 OK in 156ms (Views: 34.6ms | ActiveRecord: 121.0ms | Allocations: 36980)
67733
+
67734
+
67735
+ Request to https://sessions.bugsnag.com completed, status: 202
67736
+ Started GET "/banal/employees" for ::1 at 2019-09-19 21:36:15 +0200
67737
+ Processing by Banal::EmployeesController#index as HTML
67738
+ Rendering banal/employees/index.html.erb within layouts/application
67739
+ Banal::Employee Load (112.2ms) SELECT "banal_employees".* FROM "banal_employees"
67740
+ ↳ app/views/banal/employees/index.html.erb:2
67741
+ Rendered banal/employees/index.html.erb within layouts/application (Duration: 113.7ms | Allocations: 963)
67742
+ Rendered application/_navbar.html.erb (Duration: 0.3ms | Allocations: 131)
67743
+ Completed 200 OK in 154ms (Views: 41.0ms | ActiveRecord: 112.2ms | Allocations: 38497)
67744
+
67745
+
67746
+ Started GET "/banal/employees/3" for ::1 at 2019-09-19 21:36:19 +0200
67747
+ Processing by Banal::EmployeesController#show as HTML
67748
+ Parameters: {"id"=>"3"}
67749
+ Banal::Employee Load (112.1ms) SELECT "banal_employees".* FROM "banal_employees" WHERE "banal_employees"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]]
67750
+ ↳ app/controllers/banal/employees_controller.rb:67:in `set_banal_employee'
67751
+ Rendering banal/employees/show.html.erb within layouts/application
67752
+ Rendered banal/employees/show.html.erb within layouts/application (Duration: 1.7ms | Allocations: 518)
67753
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67754
+ Completed 200 OK in 260ms (Views: 31.6ms | ActiveRecord: 112.1ms | Allocations: 37509)
67755
+
67756
+
67757
+ Started GET "/" for ::1 at 2019-09-19 21:36:24 +0200
67758
+ Processing by ImportedDataController#overview as HTML
67759
+ Redirected to http://localhost:3000/directories/%2Fdropbox
67760
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms | Allocations: 365)
67761
+
67762
+
67763
+ Started GET "/directories/%2Fdropbox" for ::1 at 2019-09-19 21:36:25 +0200
67764
+ Processing by DirectoriesController#show as HTML
67765
+ Parameters: {"id"=>"/dropbox"}
67766
+ FileSystem Load (109.5ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67767
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67768
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67769
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67770
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67771
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67772
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67773
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67774
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67775
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67776
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67777
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67778
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67779
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67780
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67781
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67782
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67783
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67784
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67785
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67786
+ CACHE FileSystem Load (0.0ms) SELECT "file_systems".* FROM "file_systems" WHERE "file_systems"."machine_readable_identifier" = $1 LIMIT $2 [["machine_readable_identifier", "dropbox"], ["LIMIT", 1]]
67787
+ ↳ app/models/ezii_os_path.rb:10:in `initialize'
67788
+ Rendering directories/show.html.erb within layouts/application
67789
+ Rendered directories/show.html.erb within layouts/application (Duration: 2.5ms | Allocations: 2025)
67790
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67791
+ Completed 200 OK in 1179ms (Views: 28.9ms | ActiveRecord: 109.6ms | Allocations: 45775)
67792
+
67793
+
67794
+ Started GET "/employees" for ::1 at 2019-09-19 21:36:27 +0200
67795
+ Processing by EmployeesController#index as HTML
67796
+ Rendering employees/index.html.erb within layouts/application
67797
+ Employee Load (110.7ms) SELECT "employees".* FROM "employees"
67798
+ ↳ app/views/employees/index.html.erb:2
67799
+ Rendered employees/index.html.erb within layouts/application (Duration: 112.3ms | Allocations: 773)
67800
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67801
+ Completed 200 OK in 143ms (Views: 31.5ms | ActiveRecord: 110.7ms | Allocations: 37532)
67802
+
67803
+
67804
+ Started GET "/..." for ::1 at 2019-09-19 21:36:34 +0200
67805
+
67806
+ ActionController::RoutingError (No route matches [GET] "/..."):
67807
+
67808
+ actionpack (6.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
67809
+ web-console (4.0.1) lib/web_console/middleware.rb:132:in `call_app'
67810
+ web-console (4.0.1) lib/web_console/middleware.rb:28:in `block in call'
67811
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `catch'
67812
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `call'
67813
+ actionpack (6.0.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
67814
+ railties (6.0.0) lib/rails/rack/logger.rb:38:in `call_app'
67815
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `block in call'
67816
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `block in tagged'
67817
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:28:in `tagged'
67818
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `tagged'
67819
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `call'
67820
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
67821
+ actionpack (6.0.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
67822
+ actionpack (6.0.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
67823
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
67824
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
67825
+ activesupport (6.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
67826
+ actionpack (6.0.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
67827
+ actionpack (6.0.0) lib/action_dispatch/middleware/static.rb:126:in `call'
67828
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
67829
+ actionpack (6.0.0) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
67830
+ webpacker (4.0.7) lib/webpacker/dev_server_proxy.rb:29:in `perform_request'
67831
+ rack-proxy (0.6.5) lib/rack/proxy.rb:57:in `call'
67832
+ railties (6.0.0) lib/rails/engine.rb:526:in `call'
67833
+ puma (3.12.1) lib/puma/configuration.rb:227:in `call'
67834
+ puma (3.12.1) lib/puma/server.rb:660:in `handle_request'
67835
+ puma (3.12.1) lib/puma/server.rb:474:in `process_client'
67836
+ puma (3.12.1) lib/puma/server.rb:334:in `block in run'
67837
+ puma (3.12.1) lib/puma/thread_pool.rb:135:in `block in spawn_thread'
67838
+ Started GET "/banal_complexes" for ::1 at 2019-09-19 21:36:36 +0200
67839
+ Processing by BanalComplexesController#index as HTML
67840
+ Rendering banal_complexes/index.html.erb within layouts/application
67841
+ BanalComplex Load (116.9ms) SELECT "banal_complexes".* FROM "banal_complexes"
67842
+ ↳ app/views/banal_complexes/index.html.erb:15
67843
+ BanalComplex Load (113.6ms) SELECT "banal_complexes".* FROM "banal_complexes" WHERE ( "id" IN ( WITH RECURSIVE all_nodes AS (
67844
+ SELECT "banal_complexes"."id", "banal_complexes"."parent_id" FROM "banal_complexes" WHERE "banal_complexes"."parent_id" IS NULL
67845
+ UNION
67846
+ SELECT "banal_complexes"."id", "banal_complexes"."parent_id" FROM "banal_complexes" INNER JOIN all_nodes ON "banal_complexes"."parent_id"=all_nodes."id"
67847
+ )
67848
+
67849
+ SELECT "banal_complexes"."id" FROM "banal_complexes" INNER JOIN all_nodes USING("id")
67850
+ )
67851
+ )
67852
+ ↳ app/views/banal_complexes/index.html.erb:30:in `map'
67853
+ CACHE BanalComplex Load (0.0ms) SELECT "banal_complexes".* FROM "banal_complexes"
67854
+ ↳ app/views/banal_complexes/index.html.erb:36:in `map'
67855
+ Rendered banal_complexes/index.html.erb within layouts/application (Duration: 235.9ms | Allocations: 2532)
67856
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67857
+ Completed 200 OK in 272ms (Views: 40.0ms | ActiveRecord: 230.5ms | Allocations: 39287)
67858
+
67859
+
67860
+ Started GET "/..." for ::1 at 2019-09-19 21:36:37 +0200
67861
+
67862
+ ActionController::RoutingError (No route matches [GET] "/..."):
67863
+
67864
+ actionpack (6.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:36:in `call'
67865
+ web-console (4.0.1) lib/web_console/middleware.rb:132:in `call_app'
67866
+ web-console (4.0.1) lib/web_console/middleware.rb:28:in `block in call'
67867
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `catch'
67868
+ web-console (4.0.1) lib/web_console/middleware.rb:17:in `call'
67869
+ actionpack (6.0.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
67870
+ railties (6.0.0) lib/rails/rack/logger.rb:38:in `call_app'
67871
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `block in call'
67872
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `block in tagged'
67873
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:28:in `tagged'
67874
+ activesupport (6.0.0) lib/active_support/tagged_logging.rb:80:in `tagged'
67875
+ railties (6.0.0) lib/rails/rack/logger.rb:26:in `call'
67876
+ sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
67877
+ actionpack (6.0.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
67878
+ actionpack (6.0.0) lib/action_dispatch/middleware/request_id.rb:27:in `call'
67879
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
67880
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
67881
+ activesupport (6.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
67882
+ actionpack (6.0.0) lib/action_dispatch/middleware/executor.rb:14:in `call'
67883
+ actionpack (6.0.0) lib/action_dispatch/middleware/static.rb:126:in `call'
67884
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
67885
+ actionpack (6.0.0) lib/action_dispatch/middleware/host_authorization.rb:83:in `call'
67886
+ webpacker (4.0.7) lib/webpacker/dev_server_proxy.rb:29:in `perform_request'
67887
+ rack-proxy (0.6.5) lib/rack/proxy.rb:57:in `call'
67888
+ railties (6.0.0) lib/rails/engine.rb:526:in `call'
67889
+ puma (3.12.1) lib/puma/configuration.rb:227:in `call'
67890
+ puma (3.12.1) lib/puma/server.rb:660:in `handle_request'
67891
+ puma (3.12.1) lib/puma/server.rb:474:in `process_client'
67892
+ puma (3.12.1) lib/puma/server.rb:334:in `block in run'
67893
+ puma (3.12.1) lib/puma/thread_pool.rb:135:in `block in spawn_thread'
67894
+ Started GET "/visualizations" for ::1 at 2019-09-19 21:36:37 +0200
67895
+ Processing by VisualizationsController#index as HTML
67896
+ Rendering visualizations/index.html.erb within layouts/application
67897
+ Visualization Load (110.2ms) SELECT "visualizations".* FROM "visualizations"
67898
+ ↳ app/views/visualizations/index.html.erb:14
67899
+ Rendered visualizations/index.html.erb within layouts/application (Duration: 113.8ms | Allocations: 1191)
67900
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 16)
67901
+ Completed 200 OK in 149ms (Views: 37.6ms | ActiveRecord: 110.2ms | Allocations: 37943)
67902
+
67903
+
67904
+ Request to https://sessions.bugsnag.com completed, status: 202
67905
+ Started GET "/banal/brainstorms" for ::1 at 2019-09-19 21:36:43 +0200
67906
+ Processing by Banal::BrainstormsController#index as HTML
67907
+ Rendering banal/brainstorms/index.html.erb within layouts/application
67908
+ Banal::Brainstorm Load (118.7ms) SELECT "banal_brainstorms".* FROM "banal_brainstorms" WHERE "banal_brainstorms"."deleted_at" IS NULL
67909
+ ↳ app/views/banal/brainstorms/index.html.erb:19
67910
+ Comment Load (137.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 22]]
67911
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67912
+ Comment Load (112.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."parent_id" = $1 [["parent_id", 44]]
67913
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67914
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 231.7ms | Allocations: 944)
67915
+ Rendered banal/brainstorms/_comment.html.erb (Duration: 234.5ms | Allocations: 2362)
67916
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 486.0ms | Allocations: 3526)
67917
+ Comment Load (113.3ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 9]]
67918
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67919
+ Comment Load (110.4ms) SELECT "comments".* FROM "comments" WHERE "comments"."parent_id" = $1 [["parent_id", 45]]
67920
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67921
+ Comment Load (123.9ms) SELECT "comments".* FROM "comments" WHERE "comments"."parent_id" = $1 [["parent_id", 46]]
67922
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67923
+ Comment Load (118.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."parent_id" = $1 [["parent_id", 47]]
67924
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67925
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 119.4ms | Allocations: 1001)
67926
+ Rendered banal/brainstorms/_comment.html.erb (Duration: 120.4ms | Allocations: 1526)
67927
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 246.0ms | Allocations: 2570)
67928
+ Rendered banal/brainstorms/_comment.html.erb (Duration: 246.8ms | Allocations: 3095)
67929
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 359.2ms | Allocations: 4107)
67930
+ Rendered banal/brainstorms/_comment.html.erb (Duration: 360.0ms | Allocations: 4632)
67931
+ CACHE Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."parent_id" = $1 [["parent_id", 46]]
67932
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67933
+ CACHE Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."parent_id" = $1 [["parent_id", 47]]
67934
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67935
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 1.0ms | Allocations: 885)
67936
+ Rendered banal/brainstorms/_comment.html.erb (Duration: 1.9ms | Allocations: 1410)
67937
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 3.2ms | Allocations: 2335)
67938
+ Rendered banal/brainstorms/_comment.html.erb (Duration: 5.4ms | Allocations: 2859)
67939
+ CACHE Comment Load (0.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."parent_id" = $1 [["parent_id", 47]]
67940
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67941
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 1.8ms | Allocations: 848)
67942
+ Rendered banal/brainstorms/_comment.html.erb (Duration: 3.2ms | Allocations: 1372)
67943
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 484.6ms | Allocations: 9908)
67944
+ Comment Load (114.5ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 14]]
67945
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67946
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 116.0ms | Allocations: 814)
67947
+ Comment Load (126.8ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 10]]
67948
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67949
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 128.9ms | Allocations: 818)
67950
+ Comment Load (108.5ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 11]]
67951
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67952
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 109.7ms | Allocations: 814)
67953
+ Comment Load (110.9ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 12]]
67954
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67955
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 112.2ms | Allocations: 815)
67956
+ Comment Load (108.7ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 13]]
67957
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67958
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 109.8ms | Allocations: 814)
67959
+ Comment Load (114.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 15]]
67960
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67961
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 115.2ms | Allocations: 814)
67962
+ Comment Load (108.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 17]]
67963
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67964
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 109.4ms | Allocations: 816)
67965
+ Comment Load (108.9ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 18]]
67966
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67967
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 110.5ms | Allocations: 814)
67968
+ Comment Load (114.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 20]]
67969
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67970
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 115.7ms | Allocations: 814)
67971
+ Comment Load (113.3ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 21]]
67972
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67973
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 114.6ms | Allocations: 815)
67974
+ Comment Load (116.5ms) SELECT "comments".* FROM "comments" WHERE "comments"."banal_brainstorm_id" = $1 [["banal_brainstorm_id", 24]]
67975
+ ↳ app/views/banal/brainstorms/_comments.html.erb:1
67976
+ Rendered banal/brainstorms/_comments.html.erb (Duration: 118.1ms | Allocations: 815)
67977
+ Rendered banal/brainstorms/index.html.erb within layouts/application (Duration: 2853.6ms | Allocations: 46044)
67978
+ Rendered application/_navbar.html.erb (Duration: 0.1ms | Allocations: 15)
67979
+ Completed 200 OK in 2901ms (Views: 358.0ms | ActiveRecord: 2534.1ms | Allocations: 83951)
67980
+
67981
+
67982
+ Request to https://sessions.bugsnag.com completed, status: 202